summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2019-08-05 00:53:35 +0200
committerKatolaZ <katolaz@freaknet.org>2019-08-05 07:06:45 +0100
commit6042c9f07fe79651893953e1f3f69528806a8a5d (patch)
tree0782f03970c4d8e04333859998692a6d969a942a
parent8c68f21cb18bf707d6d5dec1724d3bd11b5855d6 (diff)
Makefile: take advantage of having separate build units
-rw-r--r--Makefile14
-rw-r--r--gramscii.c (renamed from main.c)0
2 files changed, 8 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 24aa1d3..71887b1 100644
--- a/Makefile
+++ b/Makefile
@@ -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}
diff --git a/main.c b/gramscii.c
index 9a6ef59..9a6ef59 100644
--- a/main.c
+++ b/gramscii.c