[svn-r99] Fixed backslashes

This commit is contained in:
Robb Matzke 1997-09-19 11:33:36 -05:00
parent d06e2e8eb4
commit 055daa52f0

View File

@ -26,7 +26,7 @@ dep depend: .depend
@for dep in $? dummy; do \
if [ $$dep != "dummy" ]; then \
echo Building dependencies for $$dep; \
obj=`echo $$dep | sed 's/\.c/.o/'`; \
obj=`echo $$dep | sed 's/\.c/\\\\.o/'`; \
sed "/$$obj/,/[^\\]$$/d" <$@ >$@- && mv $@- $@; \
$(CC) -M -MG $(CPPFLAGS) $$dep >>$@; \
fi; \