fish-shell/BSDmakefile
Mahmoud Al-Qudsi 9fd16d730b 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.
2017-09-14 14:29:22 -05:00

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