1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 19:07:54 +01:00

add clean

This commit is contained in:
Jason N. 2024-02-14 19:07:28 +00:00
parent d4347902f2
commit 81bcbb56ca
6 changed files with 26 additions and 7 deletions

View file

@ -3,6 +3,7 @@ version = "39"
base_dir = $(shell pwd)
image_repo = "ghcr.io/ublue-os"
image_name = "base-main"
subdir = "lorax_templates xorriso"
deploy.iso: boot.iso xorriso/input.txt $(image_name)-$(version)
xorriso -dialog on < xorriso/input.txt
@ -25,3 +26,12 @@ $(image_name)-$(version):
install-deps:
dnf install -y lorax xorriso podman git rpm-ostree
clean:
rm -f boot.iso
rm -f deploy.iso
rm -Rf $(image_name)-$(version)
for dir in $(subdir) ; do \
$(MAKE) -C $$dir clean ; \
done