mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 17:26:28 +00:00
build: Add makefile to ./test/pkg
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
parent
981def7c7a
commit
b271a3b91f
16
test/pkg/Makefile
Normal file
16
test/pkg/Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
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
|
||||||
|
|
||||||
|
forcetag:
|
||||||
|
@set -e; for d in $(DIRS); do make -C "$$d" forcetag; done
|
||||||
|
|
||||||
|
show-tag:
|
||||||
|
@set -e; for d in $(DIRS); do make -C "$$d" show-tag; done
|
||||||
|
|
||||||
|
clean: ;
|
Loading…
Reference in New Issue
Block a user