1 2 3 4 5 6 7
CFLAGS = -pedantic -Iinclude/ CFILES = src/main.c CC = gcc bin/fobfuscate: $(CFILES) mkdir -p $(@D) $(CC) $(CFLAGS) $^ -o $@