Emit error and GNU Make directions when compiled with BSD Make

On BSD platforms, a BSD-specific BSDmakefile is searched for and used
before any generic Makefile. We can use this to emit an informational
message directing the user to use GNU Make instead of relying on the
user's recognizing of random build failures on syntax errors as a sign
to switch to GNU Make.

(Random fact: this same trick also applies to GNU Make, which searches
for a GNUmakefile before using Makefile)
This commit is contained in:
Mahmoud Al-Qudsi 2017-09-14 14:17:51 -05:00
parent 9d7a0de4c1
commit d7628a4d29

3
BSDmakefile Normal file
View File

@ -0,0 +1,3 @@
all:
@echo "Error: BSD Make not supported"
@echo "Please use GNU Make (gmake) to build fish. Refer to README.md for detailed build instructions."