Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit e45abef

Browse files
committed
feat: add default makefile to call gnumake
* gmake will prefer GNUmakefile over Makefile. * Other make implementations will read Makefile and then call gmake.
1 parent 1de768f commit e45abef

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
all:
2+
@gmake $@
3+
.PHONY: all
4+
5+
.DEFAULT:
6+
@gmake $@

0 commit comments

Comments
 (0)