diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-11-30 09:50:55 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-11-30 09:51:29 +0100 |
commit | 2424b51f3df9e570612f0098600d9877b5c0160b (patch) | |
tree | e3bd6c1f582c0cde69f6d632e13976c4cca5259d /src/Makefile | |
parent | ec64d41cd58086049000bea2f001a71188aa1967 (diff) |
Makefile: Respect CPPFLAGS when creating deps.mk (closes #74)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 84ee7ab..0e2c543 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,7 +19,7 @@ help.inc: help.raw deps.mk: ${TARGETS} ${I_DSTS} - ${CC} -MM ${TARGETS} > $@ + ${CC} ${CPPFLAGS} -MM ${TARGETS} > $@ clean: rm -f feh *.o *.inc |