s/build-debug/debug-build/g

This commit is contained in:
Yuichi Nishiwaki 2013-11-15 17:07:57 +09:00
parent ae9d1621d3
commit 754d53443b
1 changed files with 3 additions and 3 deletions

View File

@ -6,13 +6,13 @@ ifeq ($(findstring CYGWIN,$(shell uname -s)), CYGWIN)
PICRIN_LIB =cygpicrin.dll
endif
all: build-debug run
all: debug-build run
release: CFLAGS += -DDEBUG=0
release: build
build-debug: CFLAGS += -g -DDEBUG=1
build-debug: build
debug-build: CFLAGS += -g -DDEBUG=1
debug-build: build
build: build-lib build-main