diff options
author | KatolaZ <katolaz@freaknet.org> | 2019-07-27 06:57:12 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2019-07-27 06:57:12 +0100 |
commit | 8e3d23b921d9bbcb7c53017bacff8a3050a34b55 (patch) | |
tree | fc26ae9768e6c72827b03e973dbf0479b0a0431d /Makefile | |
parent | 3d53fcefe3ca3e6f25d1731c2caa0c1c0e676453 (diff) |
reorganise code
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} |