diff options
| author | Manuel Traut <manut@mecka.net> | 2012-06-07 13:52:08 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2012-06-07 13:52:08 +0200 |
| commit | 986a4e78ce5461dc0ada66169bb9111fb0346c46 (patch) | |
| tree | ff2c7cf1740688313547190fa7626e4543483538 /io/bin/Makefile | |
| parent | e84faa1a220ebdcf79a3d95e539dfc8d86a8c460 (diff) | |
cleanup project structure
move some subprojects
fixup makefiles
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'io/bin/Makefile')
| -rw-r--r-- | io/bin/Makefile | 12 |
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) |
