* A couple of small Makefile fixes

This commit is contained in:
Tim Angus 2005-10-05 18:13:34 +00:00
parent 490c84d907
commit 260ca8d730
1 changed files with 6 additions and 2 deletions

View File

@ -1425,7 +1425,7 @@ clean-debug:
$(MAKE) clean2 B=$(BD) CFLAGS="$(DEBUG_CFLAGS)" $(MAKE) clean2 B=$(BD) CFLAGS="$(DEBUG_CFLAGS)"
clean-release: clean-release:
$(MAKE) clean2 B=$(BR) CFLAGS="$(DEBUG_CFLAGS)" $(MAKE) clean2 B=$(BR) CFLAGS="$(RELEASE_CFLAGS)"
distclean: clean distclean: clean
$(MAKE) -C ../tools/asm clean uninstall $(MAKE) -C ../tools/asm clean uninstall
@ -1435,4 +1435,8 @@ distclean: clean
# DEPENDENCIES # DEPENDENCIES
############################################################################# #############################################################################
-include $(shell find -name "*.d") D_FILES=$(shell find -name "*.d")
ifneq ($(strip $(D_FILES)),)
include $(D_FILES)
endif