File: BSDmakefile

package info (click to toggle)
nodejs 4.7.2~dfsg-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 62,052 kB
  • sloc: cpp: 661,182; ansic: 31,406; python: 23,039; makefile: 1,363; sh: 1,351; perl: 255; lisp: 222; ruby: 76; xml: 50
file content (11 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
# 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