Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c502fafa8b7280789333731608d71761c11483e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BUILDTYPE ?= Debug

all: out/Makefile
	$(MAKE) -C out BUILDTYPE=$(BUILDTYPE)

out/Makefile:
	tools/gyp_node -f make

distclean:
	rm -rf out

.PHONY: all distclean