From 51a315e5505fba9ed2292f0542c81f9d7c2ed9a0 Mon Sep 17 00:00:00 2001 From: tma Date: Wed, 5 Oct 2005 18:13:34 +0000 Subject: * A couple of small Makefile fixes git-svn-id: svn://svn.icculus.org/quake3/trunk@142 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/unix/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'code/unix/Makefile') diff --git a/code/unix/Makefile b/code/unix/Makefile index 0418b4b..42fb7d8 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -1425,7 +1425,7 @@ clean-debug: $(MAKE) clean2 B=$(BD) CFLAGS="$(DEBUG_CFLAGS)" clean-release: - $(MAKE) clean2 B=$(BR) CFLAGS="$(DEBUG_CFLAGS)" + $(MAKE) clean2 B=$(BR) CFLAGS="$(RELEASE_CFLAGS)" distclean: clean $(MAKE) -C ../tools/asm clean uninstall @@ -1435,4 +1435,8 @@ distclean: clean # DEPENDENCIES ############################################################################# --include $(shell find -name "*.d") +D_FILES=$(shell find -name "*.d") + +ifneq ($(strip $(D_FILES)),) + include $(D_FILES) +endif -- cgit v1.2.3