AtomBusMon/target/common/Makefile_subdirs.inc
David Banks 7453cf4f9f LX9 support: massive refactor of the build system
Change-Id: I75ff141a0d3b2c30a37d8f0e497f4f923e302b8b
2017-07-26 14:59:20 +01:00

17 lines
262 B
PHP

SUB_DIRS = $(wildcard ice*/.)
build:
for dir in $(SUB_DIRS); do \
$(MAKE) -C $$dir build; \
done;
clean:
for dir in $(SUB_DIRS); do \
$(MAKE) -C $$dir clean; \
done;
clobber:
for dir in $(SUB_DIRS); do \
$(MAKE) -C $$dir clobber; \
done;