Merge pull request #6551 from ipfs/fix/gnumake

require GNU make
This commit is contained in:
Steven Allen 2019-08-05 16:48:21 -07:00 committed by GitHub
commit 1e7fe0d6fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 7 deletions

8
GNUmakefile Normal file
View File

@ -0,0 +1,8 @@
# General tools
SHELL=PATH='$(PATH)' /bin/sh
# enable second expansion
.SECONDEXPANSION:
include Rules.mk

View File

@ -1,8 +1,6 @@
# General tools
all:
@gmake $@
.PHONY: all
SHELL=PATH='$(PATH)' /bin/sh
# enable second expansion
.SECONDEXPANSION:
include Rules.mk
.DEFAULT:
@gmake $@