Add BSDmakefile (#1193)

The default BSD make (at least on FreeBSD) is not GNU make, nor is it
compatbile with it. This new BSDmakefile will case BSD make to invoke GNU
make.
This commit is contained in:
Iku 2017-04-05 08:33:50 +02:00 committed by Justin Hammond
parent 66e781505d
commit 2eacd88ad7

6
BSDmakefile Normal file
View file

@ -0,0 +1,6 @@
all: .DEFAULT
.DEFAULT:
gmake ${.MAKEFLAGS} ${.TARGETS}
.PHONY: all