feat: add default makefile to call gnumake
* gmake will prefer GNUmakefile over Makefile. * Other make implementations will read Makefile and then call gmake.
Steven Allen committed
Aug 1, 2019 at 12:53 UTC
e45abef49f72f7724d44c1d8bc00d629d5a49898
1 file changed
+6
Makefile
new
+6
@@ -0,0 +1,6 @@
1
+all:
2
+ @gmake $@
3
+.PHONY: all
4
+
5
+.DEFAULT:
6
+ @gmake $@