Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: src/platform/vboot_reference/Makefile

Issue 2082015: add cgpt framework and attribute support. (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/platform/vboot_reference/Makefile
diff --git a/src/platform/vboot_reference/Makefile b/src/platform/vboot_reference/Makefile
index 2a1043cf4b3c58089535545455c51f927e8d0959..bdba1c103980b2ccfd142c3cdc804c488d8e0fed 100644
--- a/src/platform/vboot_reference/Makefile
+++ b/src/platform/vboot_reference/Makefile
@@ -14,11 +14,13 @@ export INCLUDES = \
SUBDIRS=common cgptlib cryptolib misclibs vfirmware vkernel utility tests
all:
- for i in $(SUBDIRS); do \
- ( cd $$i ; $(MAKE)) ; \
+ set -e; \
Bill Richardson 2010/05/20 16:51:15 That's not parallelizable. Use this instead: all:
Louis 2010/05/21 03:43:21 This cannot be parallelized because we need to com
+ for i in $(SUBDIRS); do \
+ make -C $$i; \
done
clean:
+ set -e; \
Bill Richardson 2010/05/20 16:51:15 clean: $(foreach DIR,$(SUBDIRS),$(DIR)-subdir)
Louis 2010/05/21 03:43:21 This cannot be parallelized because our build syst
for i in $(SUBDIRS); do \
- ( cd $$i ; make clean) ; \
+ make -C $$i clean ; \
done
« no previous file with comments | « no previous file | src/platform/vboot_reference/cgptlib/Makefile » ('j') | src/platform/vboot_reference/cgptlib/Makefile » ('J')

Powered by Google App Engine
This is Rietveld 408576698