first commit

This commit is contained in:
2026-01-04 23:41:12 -06:00
commit 099c68b4b5
5 changed files with 58 additions and 0 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
all: app
app: main.c
@gcc -std=c23 -ggdb -Wall -Wextra -pedantic -O0 main.c -o app
.PHONY: clean run test debug
clean:
@rm -rf app
run: app
-@./app
@rm -rf app
test: app
@valgrind ./app
@rm -rf app
debug: app
@gdb ./app
@rm -rf app