From 80077a7934c33ee12eae7c92adb355d634e6d0a4 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 29 Mar 2023 19:29:28 -0500 Subject: [PATCH] make: Add build phony target Now you can run `make build` to (re-)build binary packages. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 7889c0b..3d887ae 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,8 @@ $(O)/.built: \ ./build.sh touch $(O)/.built +build: $(O)/.built + $(O)/semanage.mods: \ semanage.mods \ $(wildcard $(CONFIGDIR)/semanage.mods) @@ -122,6 +124,7 @@ clean: rm -f $(O)/.prepared $(O)/.host-tools .PHONY: \ + build \ grub \ host-tools \ kernel \