mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-01 05:08:02 +00:00
11 lines
142 B
Makefile
11 lines
142 B
Makefile
DIRS = $(shell find . -maxdepth 1 -mindepth 1 -type d)
|
|
.PHONY: clean dirs $(DIRS)
|
|
|
|
push: $(DIRS)
|
|
|
|
$(DIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
rm -f hash
|