diff options
Diffstat (limited to 'devices/Makefile')
| -rw-r--r-- | devices/Makefile | 12 |
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) |
