Files
linuxkit/pkg/Makefile
Vincent Demeester a315e0b681 Fix DIRS find command to work on more system
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-07-03 10:27:31 +01:00

11 lines
211 B
Makefile

DIRS = $(shell find . -maxdepth 1 -mindepth 1 -type d)
.PHONY: clean dirs $(DIRS)
push:
@set -e; for d in $(DIRS); do make -C "$$d"; done
tag:
@set -e; for d in $(DIRS); do make -C "$$d" tag; done
clean: ;