initial commit
This commit is contained in:
commit
699a66a75a
4 changed files with 14 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
build/*
|
7
makefile
Normal file
7
makefile
Normal 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
2
readme.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# wte - what to eat
|
||||
get a menu for the day
|
4
src/wta.c
Normal file
4
src/wta.c
Normal file
|
@ -0,0 +1,4 @@
|
|||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue