mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 10:20:37 +00:00
11 lines
211 B
Makefile
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: ;
|