nodejs/BSDmakefile

12 lines
268 B
Makefile
Raw Normal View History

2022-08-16 11:12:47 +08:00
# pmake might add -J (private)
FLAGS=${.MAKEFLAGS:C/\-J ([0-9]+,?)+//W}
all: .DEFAULT
.DEFAULT:
2024-06-03 09:55:04 +08:00
@command -v gmake > /dev/null 2>&1 ||\
2022-08-16 11:12:47 +08:00
(echo "GMake is required for node.js to build.\
Install and try again" && exit 1)
@gmake ${.FLAGS} ${.TARGETS}
.PHONY: test