summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLouis Yung-Chieh Lo <yjlou@chromium.org>2010-05-21 16:35:44 +0800
committerLouis Yung-Chieh Lo <yjlou@chromium.org>2010-05-21 16:35:44 +0800
commitb31ddcec6a826986cd215725bf4defbc6021fe6b (patch)
tree401feaf4142baa058e90c1b0e5fe7701ae9ba65b /Makefile
parent0dce41c2ece9020d5ac9bb68c9772432fac85e64 (diff)
downloadvboot-b31ddcec6a826986cd215725bf4defbc6021fe6b.tar.gz
add cgpt framework and attribute support.
Review URL: http://codereview.chromium.org/2082015
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a1043cf..268b81f7 100644
--- a/Makefile
+++ b/Makefile
@@ -14,11 +14,13 @@ export INCLUDES = \
SUBDIRS=common cgptlib cryptolib misclibs vfirmware vkernel utility tests
all:
+ set -e; \
for i in $(SUBDIRS); do \
- ( cd $$i ; $(MAKE)) ; \
+ make -C $$i; \
done
clean:
+ set -e; \
for i in $(SUBDIRS); do \
- ( cd $$i ; make clean) ; \
+ make -C $$i clean; \
done