1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

simpler Makefile

This commit is contained in:
Alexander Medvednikov 2019-06-25 21:46:07 +02:00
parent 63431ead94
commit b16828dd4d

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