initial commit

This commit is contained in:
xesc 2024-10-06 21:29:36 +02:00
commit 699a66a75a
4 changed files with 14 additions and 0 deletions

7
makefile Normal file
View file

@ -0,0 +1,7 @@
.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