summaryrefslogtreecommitdiff
path: root/makefiles/gmake/depend.mk
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-06-06 21:00:34 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-06-06 21:00:34 +0200
commitc92971182c73984955fc66a62d82bef3b083b271 (patch)
tree6af871c5d2c53930f7d62629aec54346576d6373 /makefiles/gmake/depend.mk
parent7ff343817893038aec7a6116827f39d95e202d9a (diff)
downloadwolfbones-c92971182c73984955fc66a62d82bef3b083b271.tar.gz
wolfbones-c92971182c73984955fc66a62d82bef3b083b271.tar.bz2
fixed tcc (limits.h problems and linking dynamic libraries on 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 eb832e7..cb6556c 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 $(PLATFORM_COMPILE_FLAGS) $(INCLUDE_DIRS) -I/usr/lib/tcc/include -f - $< > $@
+ @makedepend -DMAKE_DEPENDENCIES $(PLATFORM_COMPILE_FLAGS) -D__TINYC__ $(INCLUDE_DIRS) -I/usr/lib/tcc/include -f - $< > $@
endif