summaryrefslogtreecommitdiff
path: root/src/glu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/glu/Makefile')
-rw-r--r--src/glu/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile
new file mode 100644
index 0000000000..5ddc50946a
--- /dev/null
+++ b/src/glu/Makefile
@@ -0,0 +1,23 @@
+# src/glu/Makefile
+
+TOP = ../..
+
+include $(TOP)/configs/current
+
+
+SUBDIRS = $(GLU_DIRS)
+
+
+default: $(TOP)/configs/current
+ @for dir in $(SUBDIRS) ; do \
+ (cd $$dir ; $(MAKE)) ; \
+ done
+
+install:
+ $(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR)
+ $(INSTALL) $(TOP)/$(LIB_DIR)/libGLU.* $(INSTALL_DIR)/$(LIB_DIR)
+
+clean:
+ @for dir in $(SUBDIRS) ; do \
+ (cd $$dir ; $(MAKE) clean) ; \
+ done