rename make debug-build command s/debug-build/debug/g

This commit is contained in:
Yuichi Nishiwaki 2013-11-28 18:49:51 +09:00
parent e10bbac8e5
commit 24a6f54bc4
1 changed files with 3 additions and 3 deletions

View File

@ -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