Init vger

This commit is contained in:
Solene Rapenne 2020-12-01 23:39:05 +01:00
commit c2d813c0f1
5 changed files with 248 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
all: vger
clean:
rm vger
vger: main.c
${CC} -o vger main.c
test: vger
cd tests && sh test.sh