summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 38a1ac3..aa01cfa 100644
--- a/Makefile
+++ b/Makefile
@@ -2,5 +2,8 @@ BUTANE := podman run --rm --interactive --security-opt label=disable --volume ${
-include custom.mk
-config.ign: config.bu
- $(BUTANE) --pretty --strict $< > $@
+.PHONY: all
+all: config.ign rpi4.ign
+
+%.ign: %.bu $(wildcard parts/*)
+ $(BUTANE) --pretty --strict $*.bu -d ./ > $@