jhbuild r2175 - trunk



Author: herzi
Date: Mon Jul 21 12:50:48 2008
New Revision: 2175
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2175&view=rev

Log:
2008-07-21  Sven Herzberg  <sven imendio com>

	Use $(MAKE) instead of literal make; this way make can know that a
	command will invoke make again. Knowing this will help make to schedule
	parallel builds.

	* Makefile.plain: use $(MAKE) instead of literal make



Modified:
   trunk/ChangeLog
   trunk/Makefile.plain

Modified: trunk/Makefile.plain
==============================================================================
--- trunk/Makefile.plain	(original)
+++ trunk/Makefile.plain	Mon Jul 21 12:50:48 2008
@@ -4,6 +4,8 @@
 CC = gcc
 CFLAGS = -Wall -O2
 
+MAKE ?= make
+
 bindir=$(HOME)/bin
 desktopdir=$(HOME)/.local/share/applications
 
@@ -15,10 +17,10 @@
 
 update:
 	svn update --quiet
-	@if [ "x$(DISABLE_GETTEXT)" == x ]; then (cd po && make -f Makefile.plain); fi
+	@if [ "x$(DISABLE_GETTEXT)" == x ]; then (cd po && $(MAKE) -f Makefile.plain); fi
 
 install: install-check
-	@if [ "x$(DISABLE_GETTEXT)" == x ]; then (cd po && make -f Makefile.plain install); fi
+	@if [ "x$(DISABLE_GETTEXT)" == x ]; then (cd po && $(MAKE) -f Makefile.plain install); fi
 	@echo "Creating $(bindir)/jhbuild"
 	@mkdir -p $(bindir)
 	@sed "s,@jhbuilddir@,`pwd`,g" < jhbuild.in > $(bindir)/jhbuild



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]