summaryrefslogtreecommitdiff
path: root/src/glu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/glu/Makefile')
-rw-r--r--src/glu/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile
index 4ddf09016b..2b922fc021 100644
--- a/src/glu/Makefile
+++ b/src/glu/Makefile
@@ -10,15 +10,11 @@ SUBDIRS = $(GLU_DIRS)
default: $(TOP)/configs/current
@for dir in $(SUBDIRS) ; do \
- pushd $$dir ; \
- make ; \
- popd ; \
+ (cd $$dir ; make) ; \
done
clean:
@for dir in $(SUBDIRS) ; do \
- pushd $$dir ; \
- make clean; \
- popd ; \
+ (cd $$dir ; make clean) ; \
done