Dependencies jetzt okay

This commit is contained in:
Enno Rehling 2002-04-21 10:45:24 +00:00
parent 060b31f3cb
commit 4d7210014f
1 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,8 @@ endif
# Create dependencies
depend:: $(SOURCES)
@echo "Creating dependencies in `pwd`/.depend";
$(DEPEND) $(CFLAGS) $(DEFINES) $(INCDIRS) $(SOURCES) >| .depend
@$(DEPEND) $(CFLAGS) $(DEFINES) $(INCDIRS) $(SOURCES) >| .depend
@perl -pe 's/(.*\.o)/Debug-$(ARCHITECTURE)\/\1 Release-$(ARCHITECTURE)\/\1/' -i .depend
endif