rename target dev to debug
This commit is contained in:
parent
76070602c3
commit
608458bf47
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -27,10 +27,10 @@ compilation: $(OBJETS)
|
||||||
main: CFLAGS += -O3
|
main: CFLAGS += -O3
|
||||||
main: compilation
|
main: compilation
|
||||||
|
|
||||||
dev: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
|
debug: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
|
||||||
dev: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
|
debug: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
|
||||||
dev: LDFLAGS += -fsanitize=undefined
|
debug: LDFLAGS += -fsanitize=undefined
|
||||||
dev: compilation
|
debug: compilation
|
||||||
|
|
||||||
all:
|
all:
|
||||||
main
|
main
|
||||||
|
|
Reference in a new issue