summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ce0381..da97e66 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
include config.mk
SRC = gramscii.c
+INCLUDES = config.h
all: options gramscii
@@ -14,6 +15,6 @@ options:
@echo "-+-+-+-+-+-+-+-+-+-+-"
-gramscii:
+gramscii: $(SRC) $(INCLUDES)
$(CC) $(CFLAGS) -o $@ $(SRC)