build: Add makefile to ./test/pkg

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2017-08-03 13:55:32 +01:00
parent 981def7c7a
commit b271a3b91f

16
test/pkg/Makefile Normal file
View 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: ;