From 9fd16d730bf7b1988e9775bb1ea48a23a919c75c Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Thu, 14 Sep 2017 14:29:20 -0500 Subject: [PATCH] Include make [test|all|install] in BSDmakefile If a build takes a long time, it's entirely possible to run `gmake` and then forget to use GNU make and run `make install` after. --- BSDmakefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/BSDmakefile b/BSDmakefile index e2e3b9adf..3af4eab79 100644 --- a/BSDmakefile +++ b/BSDmakefile @@ -1,3 +1,9 @@ -all: +warn: @echo "Error: BSD Make not supported" @echo "Please use GNU Make (gmake) to build fish. Refer to README.md for detailed build instructions." + +all: +install: warn +test: warn + +.PHONY: warn all install test