mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-19 08:42:44 +08:00
10 lines
216 B
Makefile
10 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
|