commit 699a66a75ac6c9b61abda0561728abbd544a90be Author: xesc Date: Sun Oct 6 21:29:36 2024 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a007fea --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/* diff --git a/makefile b/makefile new file mode 100644 index 0000000..24aee5e --- /dev/null +++ b/makefile @@ -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 + diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..856e326 --- /dev/null +++ b/readme.md @@ -0,0 +1,2 @@ +# wte - what to eat +get a menu for the day diff --git a/src/wta.c b/src/wta.c new file mode 100644 index 0000000..f8b643a --- /dev/null +++ b/src/wta.c @@ -0,0 +1,4 @@ +int main() +{ + return 0; +}