wte/makefile
2024-10-06 21:29:36 +02:00

7 lines
191 B
Makefile

.PHONY: all debug
all: src/wta.c
gcc -o build/wta -O2 -Wall -Wextra -pedantic -Werror src/wta.c
debug: src/wta.c
gcc -o build/wta -ggdb3 -DDEBUG -Wall -Wextra -pedantic -Werror src/wta.c