simpler Makefile

pull/614/head
Alexander Medvednikov 2019-06-25 21:46:07 +02:00
parent 63431ead94
commit b16828dd4d
1 changed files with 4 additions and 6 deletions

View File

@ -1,13 +1,11 @@
all: v
v: vc
./vc -o v .
vc: v.c
cc -std=gnu11 -w -o vc v.c
v: v.c
cc -std=gnu11 -w -o v v.c
./v -o v .
v.c:
wget https://vlang.io/v.c
clean:
-rm v vc v.c
-rm vc v.c