Skip to content

Commit

Permalink
feat: add default makefile to call gnumake
Browse files Browse the repository at this point in the history
* gmake will prefer GNUmakefile over Makefile.
* Other make implementations will read Makefile and then call gmake.
  • Loading branch information
Stebalien committed Aug 1, 2019
1 parent 1de768f commit e45abef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
all:
@gmake $@
.PHONY: all

.DEFAULT:
@gmake $@

0 comments on commit e45abef

Please sign in to comment.