feat: add default makefile to call gnumake

* gmake will prefer GNUmakefile over Makefile.
* Other make implementations will read Makefile and then call gmake.
This commit is contained in:
Steven Allen 2019-08-01 12:53:00 -07:00
parent 1de768fb8f
commit e45abef49f

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
all:
@gmake $@
.PHONY: all
.DEFAULT:
@gmake $@