summaryrefslogtreecommitdiff
path: root/plugins/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Makefile')
-rw-r--r--plugins/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/Makefile b/plugins/Makefile
new file mode 100644
index 0000000..472d4d1
--- /dev/null
+++ b/plugins/Makefile
@@ -0,0 +1,12 @@
+SUBDIRS=dummy
+
+recursive=all clean install
+
+all:
+
+$(recursive):
+ @target=$@ ; \
+ for subdir in $(SUBDIRS); do \
+ echo "Making $$target in $$subdir" ; \
+ $(MAKE) -C $$subdir $$target; \
+ done