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: compilation
|
||||
|
||||
dev: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
|
||||
dev: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
|
||||
dev: LDFLAGS += -fsanitize=undefined
|
||||
dev: compilation
|
||||
debug: CFLAGS += -Wall -Wextra -Wshadow -Wcast-align -Wstrict-prototypes
|
||||
debug: CFLAGS += -fanalyzer -fsanitize=undefined -g -Og
|
||||
debug: LDFLAGS += -fsanitize=undefined
|
||||
debug: compilation
|
||||
|
||||
all:
|
||||
main
|
||||
|
|
Reference in a new issue