make: Add build phony target
Now you can run `make build` to (re-)build binary packages.master
parent
99971b5f50
commit
80077a7934
3
Makefile
3
Makefile
|
@ -39,6 +39,8 @@ $(O)/.built: \
|
||||||
./build.sh
|
./build.sh
|
||||||
touch $(O)/.built
|
touch $(O)/.built
|
||||||
|
|
||||||
|
build: $(O)/.built
|
||||||
|
|
||||||
$(O)/semanage.mods: \
|
$(O)/semanage.mods: \
|
||||||
semanage.mods \
|
semanage.mods \
|
||||||
$(wildcard $(CONFIGDIR)/semanage.mods)
|
$(wildcard $(CONFIGDIR)/semanage.mods)
|
||||||
|
@ -122,6 +124,7 @@ clean:
|
||||||
rm -f $(O)/.prepared $(O)/.host-tools
|
rm -f $(O)/.prepared $(O)/.host-tools
|
||||||
|
|
||||||
.PHONY: \
|
.PHONY: \
|
||||||
|
build \
|
||||||
grub \
|
grub \
|
||||||
host-tools \
|
host-tools \
|
||||||
kernel \
|
kernel \
|
||||||
|
|
Reference in New Issue