russell: trunk r132 - /trunk/Makefile

asterisk-gui-commits at lists.digium.com asterisk-gui-commits at lists.digium.com
Sun Nov 26 01:06:33 MST 2006


Author: russell
Date: Sun Nov 26 02:06:30 2006
New Revision: 132

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=132
Log:
use the $(MAKE) variable in the Makefile instead of hard coding "make".
(issue #8415, wijnand)

Modified:
    trunk/Makefile

Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk-gui/trunk/Makefile?view=diff&rev=132&r1=131&r2=132
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Sun Nov 26 02:06:30 2006
@@ -71,7 +71,7 @@
 
 _all:
 	for x in $(SUBDIRS); do \
-		make -C $$x all ; \
+		$(MAKE) -C $$x all ; \
 	done
 
 checkconfig:
@@ -149,7 +149,7 @@
 _install: _all
 	@echo "Installing into $(HTTPDIR)"
 	for x in $(SUBDIRS); do \
-		make -C $$x install ; \
+		$(MAKE) -C $$x install ; \
 	done
 	mkdir -p $(CONFIGDIR)
 	mkdir -p $(CONFIGDIR)/images
@@ -205,7 +205,7 @@
 
 clean:
 	for x in $(SUBDIRS); do \
-		make -C $$x clean ; \
+		$(MAKE) -C $$x clean ; \
 	done
 
 samples:



More information about the asterisk-gui-commits mailing list