summaryrefslogtreecommitdiffstats
path: root/src/gbm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/gbm/Makefile')
-rw-r--r--src/gbm/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gbm/Makefile b/src/gbm/Makefile
new file mode 100644
index 00000000000..4769a97b699
--- /dev/null
+++ b/src/gbm/Makefile
@@ -0,0 +1,14 @@
+# src/gbm/Makefile
+
+TOP = ../..
+include $(TOP)/configs/current
+
+SUBDIRS = backends main
+
+
+default install clean:
+ @for dir in $(SUBDIRS) ; do \
+ if [ -d $$dir ] ; then \
+ (cd $$dir && $(MAKE) $@) || exit 1 ; \
+ fi \
+ done