summaryrefslogtreecommitdiff
path: root/makefiles/gmake/depend.mk
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-28 18:37:48 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-28 18:37:48 +0100
commit1d99bd87f762f8a2daad14afda88748c9e3815d6 (patch)
treed62d740c6d868ac91b337330d2554bcb758432f5 /makefiles/gmake/depend.mk
parent1a8cac055793eaf8a427e92e4c24077f574a198d (diff)
downloadwolfbones-1d99bd87f762f8a2daad14afda88748c9e3815d6.tar.gz
wolfbones-1d99bd87f762f8a2daad14afda88748c9e3815d6.tar.bz2
fixed for tcc and makedepend (Linux)
Diffstat (limited to 'makefiles/gmake/depend.mk')
-rw-r--r--makefiles/gmake/depend.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefiles/gmake/depend.mk b/makefiles/gmake/depend.mk
index f803a56..1230f89 100644
--- a/makefiles/gmake/depend.mk
+++ b/makefiles/gmake/depend.mk
@@ -30,7 +30,7 @@ ifeq "$(COMPILER)" "tcc"
%.d : %.c
@echo Generating dependencies for $<
- @makedepend -DMAKE_DEPENDENCIES $(INCLUDE_DIRS) -I/usr/lib/tcc/include -f - $< > $@
+ @makedepend -DMAKE_DEPENDENCIES $(PLATFORM_COMPILE_FLAGS) $(INCLUDE_DIRS) -I/usr/lib/tcc/include -f - $< > $@
endif