From 391396df0de45993bf77c42d8968beb98a1e72f6 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Tue, 13 Mar 2012 13:23:05 -0700 Subject: [PATCH] Makefile: use node-gyp in the Makefile --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 14b33d2b..cbd8f9d8 100644 --- a/Makefile +++ b/Makefile @@ -5,18 +5,17 @@ all: test build: clean configure compile configure: - node-waf configure + node-gyp configure compile: configure - node-waf build + node-gyp build -test: build +test: @./node_modules/nodeunit/bin/nodeunit \ $(TESTS) clean: - rm -f bcrypt_lib.node - rm -Rf build + node-gyp clean .PHONY: clean test build