mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
9 lines
216 B
Makefile
9 lines
216 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: warn
|
|
install: warn
|
|
test: warn
|
|
|
|
.PHONY: warn all install test
|