mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-26 19:48:00 +00:00
20 lines
511 B
Makefile
20 lines
511 B
Makefile
DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml))
|
|
.PHONY: push forcepush tag forcetag show-tag clean
|
|
|
|
push:
|
|
@set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done
|
|
|
|
forcepush:
|
|
@set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done
|
|
|
|
tag:
|
|
@set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done
|
|
|
|
forcetag:
|
|
@set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done
|
|
|
|
show-tag:
|
|
@set -e; for d in $(DIRS); do linuxkit pkg show-tag "$$d"; done
|
|
|
|
clean:
|