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
2023-12-16 03:08:59 -03:00

9 lines
183 B
Makefile

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