From 24a6f54bc4d5800cc8c4a1451fce4fe55df906a6 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Thu, 28 Nov 2013 18:49:51 +0900 Subject: [PATCH] rename make debug-build command s/debug-build/debug/g --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 18e4b573..fc4a5aa8 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,13 @@ else PICRIN_LIB=libpicrin.so endif -all: debug-build run +all: debug run release: CFLAGS += -DDEBUG=0 -O3 release: build -debug-build: CFLAGS += -g -DDEBUG=1 -O0 -debug-build: build +debug: CFLAGS += -g -DDEBUG=1 -O0 +debug: build build: build-lib build-main