build: show a hint for BSD make (#7275)

BSD Make will give preference to a BSDmakefile in the same directory
over a generic Makefile; this can be used to instruct BSD users to build
neovim with GNU Make (gmake) instead.

Otherwise, a flood of syntax errors stemming from the GNU-specific
Makefile will be displayed - which most BSD users are accustomed to, but
may confuse beginners nevertheless.
这个提交包含在:
Mahmoud Al-Qudsi 2017-09-16 03:54:49 -05:00 提交者 Justin M. Keyes
父节点 1551f71321
当前提交 1cebf17fbe
共有 1 个文件被更改,包括 4 次插入0 次删除

4
BSDmakefile 普通文件
查看文件

@ -0,0 +1,4 @@
.DONE:
@echo "Please use GNU Make (gmake) to build neovim"
.DEFAULT:
@echo "Please use GNU Make (gmake) to build neovim"