r1868

dslinux_amadeus at dslinux.in-berlin.de dslinux_amadeus at dslinux.in-berlin.de
Tue Sep 4 19:59:40 CEST 2007


Author: amadeus
Date: 2007-09-04 19:59:35 +0200 (Tue, 04 Sep 2007)
New Revision: 1868

Log:
improve Makefile for parallel build

Modified: trunk/vendors/Makefile
===================================================================
--- trunk/vendors/Makefile	2007-09-04 17:53:43 UTC (rev 1867)
+++ trunk/vendors/Makefile	2007-09-04 17:59:35 UTC (rev 1868)
@@ -26,7 +26,7 @@
 # Note: the all and clean targets are not normally used,
 # since user/Makefile jumps directory to the product directory
 all:
-	for i in $(dir_v) ; do \
+	+for i in $(dir_v) ; do \
 		if [ -d $$i ]; then \
 			touch $$i/.sgbuilt_vendor; \
 			$(MAKE) -C $$i || exit $$? ; \
@@ -34,17 +34,17 @@
 	done
 
 romfs:
-	for i in $(dir_v) ; do \
+	+for i in $(dir_v) ; do \
 		[ ! -d $$i ] || $(MAKE) -C $$i romfs || exit $$? ; \
 	done
 
 image:
-	for i in $(dir_v) ; do \
+	+for i in $(dir_v) ; do \
 		[ ! -d $$i ] || $(MAKE) -C $$i image || exit $$? ; \
 	done
 
 vendor_%:
-	for i in $(dir_v) ; do \
+	+for i in $(dir_v) ; do \
 		[ ! -d $$i ] || $(MAKE) -C $$i $@ || exit $$? ; \
 	done
 




More information about the dslinux-commit mailing list