r1404 - trunk
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Jul 5 18:34:24 EDT 2008
Author: tma
Date: 2008-07-05 18:34:23 -0400 (Sat, 05 Jul 2008)
New Revision: 1404
Modified:
trunk/Makefile
Log:
* (bug 3692) Makefile infinitely recurses if no targets are defined
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2008-07-05 04:38:16 UTC (rev 1403)
+++ trunk/Makefile 2008-07-05 22:34:23 UTC (rev 1404)
@@ -964,7 +964,9 @@
echo " $$i"; \
done
@echo ""
+ifneq ($(TARGETS),)
@$(MAKE) $(TARGETS) V=$(V)
+endif
makedirs:
@if [ ! -d $(BUILD_DIR) ];then $(MKDIR) $(BUILD_DIR);fi
More information about the quake3-commits
mailing list