From 58dd01ab58aa6b252c3f11703733bcdb1349db6e Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 8 Aug 2011 16:07:27 +0200 Subject: [PATCH] build: add debug target to Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8487a14a..4729ad41 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,9 @@ BUILDTYPE ?= Release all: out/Makefile $(MAKE) -C out BUILDTYPE=$(BUILDTYPE) +debug: BUILDTYPE=Debug +debug: all + out/Makefile: build/gyp build/gyp_uv -f make