mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-26 10:26:20 +00:00
Not using this with new tool, so leave for editions. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
142 B
Makefile
11 lines
142 B
Makefile
DIRS=$(wildcard */)
|
|
.PHONY: clean $(DIRS)
|
|
|
|
default: $(DIRS)
|
|
|
|
$(DIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
for f in $(DIRS); do $(MAKE) -C $$f clean; done
|