vger/Makefile

11 lines
100 B
Makefile

all: vger
clean:
rm vger
vger: main.c
${CC} -o vger main.c
test: vger
cd tests && sh test.sh