r142 - trunk/code/unix
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Wed Oct 5 14:13:35 EDT 2005
Author: tma
Date: 2005-10-05 14:13:34 -0400 (Wed, 05 Oct 2005)
New Revision: 142
Modified:
trunk/code/unix/Makefile
Log:
* A couple of small Makefile fixes
Modified: trunk/code/unix/Makefile
===================================================================
--- trunk/code/unix/Makefile 2005-10-05 17:59:10 UTC (rev 141)
+++ trunk/code/unix/Makefile 2005-10-05 18:13:34 UTC (rev 142)
@@ -1425,7 +1425,7 @@
$(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 @@
# DEPENDENCIES
#############################################################################
--include $(shell find -name "*.d")
+D_FILES=$(shell find -name "*.d")
+
+ifneq ($(strip $(D_FILES)),)
+ include $(D_FILES)
+endif
More information about the quake3-commits
mailing list