diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-06 19:18:22 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-06 19:18:22 (GMT) |
commit | 50fd36027a084e0a39b4fa6fc8e49bb1ae044c8a (patch) | |
tree | d22a6f5fb268df436bf39760f0e668f1452ceb17 /Makefile | |
parent | 263c57146c81d06dd031e0e16d14c4ba87d7c3f6 (diff) | |
download | swift-50fd36027a084e0a39b4fa6fc8e49bb1ae044c8a.zip swift-50fd36027a084e0a39b4fa6fc8e49bb1ae044c8a.tar.bz2 |
Use separate "MM" variable for make dependency generation tool.
On Windows, the compiler cannot be used as a make dependency generation.
Make it possible to specify a different tool (e.g. GCC) for dependency
generation through the MM variable.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -79,13 +79,13 @@ endif endif %.dep: %.cpp - $(QUIET_MM)$(CXX) -MM -MG -MT $(basename $@).o $(filter-out -arch armv6 -arch i386 -arch ppc,$(CXXFLAGS)) $< > $@ + $(QUIET_MM)$(MM) -MM -MG -MT $(basename $@).o $(CPPFLAGS) $(filter-out -arch armv6 -arch i386 -arch ppc,$(CXXFLAGS)) $< > $@ %.dep: %.c - $(QUIET_MM)$(CC) -MM -MG -MT $(basename $@).o $(filter-out -arch armv6 -arch i386 -arch ppc,$(CFLAGS)) $< > $@ + $(QUIET_MM)$(MM) -MM -MG -MT $(basename $@).o $(CPPFLAGS) $(filter-out -arch armv6 -arch i386 -arch ppc,$(CFLAGS)) $< > $@ %.dep: %.mm - $(QUIET_MM)$(CC) -MM -MG -MT $(basename $@).o $(filter-out -arch armv6 -arch i386 -arch ppc,$(CXXFLAGS)) $< > $@ + $(QUIET_MM)$(CC) -MM -MG -MT $(basename $@).o $(CPPFLAGS) $(filter-out -arch armv6 -arch i386 -arch ppc,$(CXXFLAGS)) $< > $@ %.o: %.c $(QUIET_CC)$(CC) -c $< -o $@ $(CPPFLAGS) $(CFLAGS) |