1# pmake might add -J (private)
2FLAGS=${.MAKEFLAGS:C/\-J ([0-9]+,?)+//W}
3
4all: .DEFAULT
5.DEFAULT:
6 @command -v gmake > /dev/null 2>&1 ||\
7 (echo "GMake is required for node.js to build.\
8 Install and try again" && exit 1)
9 @gmake ${.FLAGS} ${.TARGETS}
10
11.PHONY: test
12