'gcc -MM -o -' fix.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1849 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-07-17 13:02:45 +00:00
parent cfa5f830fa
commit a576812969
+2 -2
View File
@@ -16,12 +16,12 @@ endef
endif endif
define act_mkdep_c define act_mkdep_c
$(MKDEPEND) -o - $(CFLAGS) "$<" | \ $(MKDEPEND) $(CFLAGS) "$<" | \
$(SED) -e 's,^\(.*\).o:,'"$(@D)"'/\1.c.o:,' > "$@" $(SED) -e 's,^\(.*\).o:,'"$(@D)"'/\1.c.o:,' > "$@"
endef endef
define act_mkdep_m define act_mkdep_m
$(MKDEPEND) -o - $(CFLAGS) "$<" | \ $(MKDEPEND) $(CFLAGS) "$<" | \
$(SED) -e 's,^\(.*\).o:,'"$(@D)"'/\1.m.o:,' > "$@" $(SED) -e 's,^\(.*\).o:,'"$(@D)"'/\1.m.o:,' > "$@"
endef endef