summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2000f5e..9ec939f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,8 @@
-CFLAGS = -pedantic
+CFLAGS = -pedantic -Iinclude/
+CFILES = src/main.c
+ASMFILES = src/sse_accel.S
CC = gcc
-bin/fobfuscate: main.c
+bin/fobfuscate: $(CFILES) $(ASMFILES)
mkdir -p $(@D)
$(CC) $(CFLAGS) $^ -o $@