diff options
author | KatolaZ <katolaz@freaknet.org> | 2019-07-24 12:34:29 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2019-07-24 12:34:29 +0100 |
commit | 1be4c30c5e1526484665c382d784e0de9fe9d8de (patch) | |
tree | 551df692508b64c3ebf54435704e948f5fdc0875 /Makefile | |
parent | 3a8eeffc5b3ef3d23984913d841e3a0aa5f68e16 (diff) |
add config.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |