mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
a69ab27ab4
This commit replaces instances of io.js with Node.js, based on the recent convergence. There are some remaining instances of io.js, related to build and the installer. Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
12 lines
263 B
Makefile
12 lines
263 B
Makefile
# pmake might add -J (private)
|
|
FLAGS=${.MAKEFLAGS:C/\-J ([0-9]+,?)+//W}
|
|
|
|
all: .DEFAULT
|
|
.DEFAULT:
|
|
@which gmake > /dev/null 2>&1 ||\
|
|
(echo "GMake is required for node.js to build.\
|
|
Install and try again" && exit 1)
|
|
@gmake ${.FLAGS} ${.TARGETS}
|
|
|
|
.PHONY: test
|