mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
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.
This commit is contained in:
parent
5b61829a33
commit
9fd16d730b
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue