summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2019-07-24 12:34:29 +0100
committerKatolaZ <katolaz@freaknet.org>2019-07-24 12:34:29 +0100
commit1be4c30c5e1526484665c382d784e0de9fe9d8de (patch)
tree551df692508b64c3ebf54435704e948f5fdc0875 /Makefile
parent3a8eeffc5b3ef3d23984913d841e3a0aa5f68e16 (diff)
add config.h
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)