mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 20:06:11 +00:00
This at least checks for buildability of packages, even if we are not yet pushing them. See https://github.com/linuxkit/linuxkit/issues/1991 for what it mitigates. Will not pass until this is fixed. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
196 B
Makefile
11 lines
196 B
Makefile
DIRS = $(shell find . -type d -depth 1)
|
|
.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: ;
|