aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-05-06 17:16:15 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-05-06 17:16:15 +0000
commit18cfa35a67584affb2e08360899288a039da7372 (patch)
treeb5aac2e40f21229c48cd58b9f1aac3e4f772f8ec /src/Makefile
parentae746c1cedfd6504f0cd69f69a99367878a07e33 (diff)
(hopefully) better handling of the arch-stuff: keeping cppflags and cflags separate
svn path=/trunk/externals/iem/iemmatrix/; revision=11246
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 6003f32..3271686 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -45,7 +45,7 @@ ifdef MAKEDEP_FLAGS
## see http://www.gnu.org/software/make/manual/html_node/make_47.html#SEC51
%.d: %.c
@set -e; rm -f $@; \
- $(CPP) $(MAKEDEP_FLAGS) $(LIBRARY_CFLAGS) $< > $@.$$$$; \
+ $(CPP) $(MAKEDEP_FLAGS) $(LIBRARY_CPPFLAGS) $< > $@.$$$$; \
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
rm -f $@.$$$$
endif