This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
mifare-classic-editor/Makefile

10 lines
183 B
Makefile
Raw Normal View History

2023-12-16 03:08:59 -03:00
INCLUDES = include
SOURCES = src
OUTPUT = main
CFLAGS=-g -o main -Wall -I$(INCLUDES)
CFILES := $(foreach dir,$(SOURCES),$(wildcard $(dir)/*.c))
all:
2023-12-16 03:08:59 -03:00
gcc main.c $(CFILES) $(CFLAGS)