From 991ff9006421d80e42bc974a1cdc5a352f73f18b Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 3 Jul 2020 14:20:25 +0300 Subject: [PATCH] remove sbase-box from PHONY I have noticed this issue while I was trying to package sbase-box. Since sbase-box was in the PHONY target, running sbase-box-install caused it to be rebuilt when it was unnecessary. This also caused options passed to make to be lost (such as LDFLAGS). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 22339d0..3243b1c 100644 --- a/Makefile +++ b/Makefile @@ -279,4 +279,4 @@ clean: .gitignore: { printf '*.o\n' ; printf '/%s\n' getconf.h $(LIB) $(BIN) ; } > $@ -.PHONY: all install uninstall dist sbase-box sbase-box-install sbase-box-uninstall clean .gitignore +.PHONY: all install uninstall dist sbase-box-install sbase-box-uninstall clean .gitignore