mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-10 15:28:35 +00:00
This will be kept for editions until the new fully containerised version can replace it. 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
|