rename make debug-build command s/debug-build/debug/g
This commit is contained in:
parent
e10bbac8e5
commit
24a6f54bc4
6
Makefile
6
Makefile
|
@ -7,13 +7,13 @@ else
|
||||||
PICRIN_LIB=libpicrin.so
|
PICRIN_LIB=libpicrin.so
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: debug-build run
|
all: debug run
|
||||||
|
|
||||||
release: CFLAGS += -DDEBUG=0 -O3
|
release: CFLAGS += -DDEBUG=0 -O3
|
||||||
release: build
|
release: build
|
||||||
|
|
||||||
debug-build: CFLAGS += -g -DDEBUG=1 -O0
|
debug: CFLAGS += -g -DDEBUG=1 -O0
|
||||||
debug-build: build
|
debug: build
|
||||||
|
|
||||||
build: build-lib build-main
|
build: build-lib build-main
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue