summaryrefslogtreecommitdiff
path: root/io/bin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'io/bin/Makefile')
-rw-r--r--io/bin/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/io/bin/Makefile b/io/bin/Makefile
new file mode 100644
index 0000000..0b74f55
--- /dev/null
+++ b/io/bin/Makefile
@@ -0,0 +1,12 @@
+MAKE_DIRECTORIES = generic_gpio
+
+.PHONY: all
+idl: $(MAKE_DIRECTORIES)
+all: $(MAKE_DIRECTORIES)
+
+.PHONY: $(MAKE_DIRECTORIES)
+$(MAKE_DIRECTORIES):
+ @$(MAKE) --keep-going --directory=$@ $(MAKECMDGOALS)
+
+.PHONY: $(MAKECMDGOALS)
+$(MAKECMDGOALS): $(MAKE_DIRECTORIES)