summaryrefslogtreecommitdiff
path: root/src/glu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/glu/Makefile')
-rw-r--r--src/glu/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile
new file mode 100644
index 0000000000..4ddf09016b
--- /dev/null
+++ b/src/glu/Makefile
@@ -0,0 +1,24 @@
+# src/glu/Makefile
+
+TOP = ../..
+
+include $(TOP)/configs/current
+
+
+SUBDIRS = $(GLU_DIRS)
+
+
+default: $(TOP)/configs/current
+ @for dir in $(SUBDIRS) ; do \
+ pushd $$dir ; \
+ make ; \
+ popd ; \
+ done
+
+
+clean:
+ @for dir in $(SUBDIRS) ; do \
+ pushd $$dir ; \
+ make clean; \
+ popd ; \
+ done