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

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
build/*

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

2
readme.md Normal file
View file

@ -0,0 +1,2 @@
# wte - what to eat
get a menu for the day

4
src/wta.c Normal file
View file

@ -0,0 +1,4 @@
int main()
{
return 0;
}