summaryrefslogtreecommitdiff
path: root/devices/Makefile
diff options
context:
space:
mode:
authorManuel Traut <manut@mecka.net>2012-06-03 20:12:26 +0200
committerManuel Traut <manut@mecka.net>2012-06-03 20:12:26 +0200
commitf79ee1d59423488c3de89e97e3648515a9143b36 (patch)
tree93e4922283a5d03c1c559f48970317b8f50056f1 /devices/Makefile
parent796c97ef8d5a437fff1edb5679b82db49806e576 (diff)
add simple_dev example
- registers device at the manager - fixup manager to enable device registration - extend distrio_helper to support device registration Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'devices/Makefile')
-rw-r--r--devices/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/devices/Makefile b/devices/Makefile
new file mode 100644
index 0000000..9a8528b
--- /dev/null
+++ b/devices/Makefile
@@ -0,0 +1,12 @@
+MAKE_DIRECTORIES = simple_dev
+
+.PHONY: all
+idl: $(MAKE_DIRECTORIES)
+all: $(MAKE_DIRECTORIES)
+
+.PHONY: $(MAKE_DIRECTORIES)
+$(MAKE_DIRECTORIES):
+ @$(MAKE) --keep-going --directory=$@ $(MAKECMDGOALS)
+
+.PHONY: $(MAKECMDGOALS)
+$(MAKECMDGOALS): $(MAKE_DIRECTORIES)