mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
5b61829a33
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)
3 lines
148 B
Makefile
3 lines
148 B
Makefile
all:
|
|
@echo "Error: BSD Make not supported"
|
|
@echo "Please use GNU Make (gmake) to build fish. Refer to README.md for detailed build instructions."
|