diff options
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) |