mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
9fd16d730b
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.
9 lines
211 B
Makefile
9 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
|