diff options
author | Mahmoud Al-Qudsi <mqudsi@neosmart.net> | 2017-09-16 03:54:49 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-09-16 10:54:49 +0200 |
commit | 1cebf17fbe6943a2151a37e054b1475e049bad5f (patch) | |
tree | b61159c9f2c1c765a19c402568eacf1d9bcb24ee | |
parent | 1551f7132152aa17d59902fcab2722e9068f9618 (diff) | |
download | rneovim-1cebf17fbe6943a2151a37e054b1475e049bad5f.tar.gz rneovim-1cebf17fbe6943a2151a37e054b1475e049bad5f.tar.bz2 rneovim-1cebf17fbe6943a2151a37e054b1475e049bad5f.zip |
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.
-rw-r--r-- | BSDmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/BSDmakefile b/BSDmakefile new file mode 100644 index 0000000000..93b7dc7f3d --- /dev/null +++ b/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" |