summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-28 16:21:41 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-28 16:21:41 +0100
commit2529b80bb4fa77cbc545d320063c397241e75757 (patch)
treeedd06fb0f96907c8539445a9a2563b4fddf16bec /makefiles
parent94e643e4b06c66f01e7ddaab9215b5e78413adad (diff)
downloadwolfbones-2529b80bb4fa77cbc545d320063c397241e75757.tar.gz
wolfbones-2529b80bb4fa77cbc545d320063c397241e75757.tar.bz2
localtime_r and threading with sun c compiler, solaris 10
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/gmake/depend.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefiles/gmake/depend.mk b/makefiles/gmake/depend.mk
index 6f9ff02..f803a56 100644
--- a/makefiles/gmake/depend.mk
+++ b/makefiles/gmake/depend.mk
@@ -52,11 +52,11 @@ ifeq "$(COMPILER)" "spro"
%.d : %.c
@echo Generating dependencies for $<
- @$(CC) -DMAKE_DEPENDENCIES -xM1 $(INCLUDE_DIRS) $< > $@
+ @$(CC) -DMAKE_DEPENDENCIES -xM1 $(CFLAGS) $< > $@
%.d : %.cpp
@echo Generating dependencies for $<
- @$(CCPP) -DMAKE_DEPENDENCIES -xM1 $(INCLUDE_DIRS) $< > $@
+ @$(CCPP) -DMAKE_DEPENDENCIES -xM1 $(CCPPFLAGS) $< > $@
endif
-include $(OBJS:.o=.d)