mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-02 20:25:34 +08:00
0d8caeec34
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.
10 lines
211 B
Makefile
10 lines
211 B
Makefile
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
|