diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,8 +3,8 @@ include config.mk -SRC = gramscii.c -INC = config.h +SRC = main.c draw.c screen.c files.c +INC = config.h gramscii.h all: options gramscii @@ -22,7 +22,7 @@ gramscii: ${SRC} ${INC} clean: @echo cleaning - @rm -f $(SRC:.c=) + @rm -f $(SRC:.c=) gramscii install: all @echo installing executable to ${DESTDIR}${BINDIR} |