From cba14d85a854df8b5f24342c072acf21813761b6 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Tue, 6 May 2008 12:29:53 -0700 Subject: 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. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1a0c6093b1..62ec070979 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 -- cgit v1.2.3