summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2008-05-06 12:29:53 -0700
committerDan Nicholson <dbn.lists@gmail.com>2008-05-06 12:29:53 -0700
commitcba14d85a854df8b5f24342c072acf21813761b6 (patch)
tree60b6fd20ef1ba10ebbc1ddf8dc6e11908aa063c2 /Makefile
parent50f7e6fb5f0754093e11b781b916034001d44a09 (diff)
Error consistently when running recursive make
When changing directories and running a sub-make, ensure that both the cd and make commands propagate errors to the parent make.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1a0c6093b13..62ec0709796 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ default: $(TOP)/configs/current
doxygen:
- (cd doxygen ; make) ; \
+ cd doxygen && $(MAKE)
clean:
@for dir in $(SUBDIRS) ; do \
@@ -52,10 +52,10 @@ linux-directfb-install:
# Xserver GLcore module
glcore:
- cd src/mesa/drivers/xorg ; $(MAKE)
+ cd src/mesa/drivers/xorg && $(MAKE)
glcore-install:
- cd src/mesa/drivers/xorg ; $(MAKE) install
+ cd src/mesa/drivers/xorg && $(MAKE) install
.PHONY: default doxygen clean realclean install linux-directfb-install \
glcore glcore-install