diff options
author | Quentin Rameau <quinq@fifth.space> | 2019-08-05 00:53:35 +0200 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2019-08-05 07:06:45 +0100 |
commit | 6042c9f07fe79651893953e1f3f69528806a8a5d (patch) | |
tree | 0782f03970c4d8e04333859998692a6d969a942a | |
parent | 8c68f21cb18bf707d6d5dec1724d3bd11b5855d6 (diff) |
Makefile: take advantage of having separate build units
-rw-r--r-- | Makefile | 14 | ||||
-rw-r--r-- | gramscii.c (renamed from main.c) | 0 |
2 files changed, 8 insertions, 6 deletions
@@ -3,8 +3,9 @@ include config.mk -SRC = main.c draw.c screen.c files.c lineset.c +SRC = gramscii.c draw.c screen.c files.c lineset.c INC = config.h gramscii.h arg.h +OBJ = ${SRC:.c=.o} DISTFILES = ${SRC} ${INC} Makefile config.mk README.md Changelog all: options gramscii @@ -16,14 +17,15 @@ options: @echo "LDFLAGS = ${LDFLAGS}" @echo "CC = ${CC}" @echo "-+-+-+-+-+-+-+-+-+-+-" - -gramscii: ${SRC} ${INC} - ${CC} ${CFLAGS} ${LDFLAGS} -o $@ ${SRC} - + +gramscii: ${OBJ} + +${OBJ}: ${INC} + clean: @echo cleaning - @rm -f gramscii + @rm -f gramscii ${OBJ} install: all @echo installing executable to ${DESTDIR}${BINDIR} |