1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/Makefile
Alex Medvednikov 353a6edb7c
Update Makefile
2019-06-25 02:12:03 +02:00

14 lines
122 B
Makefile

all: v vc
v: vc
./vc -o v .
vc: v.c
cc -std=gnu11 -w -o vc v.c
v.c:
wget https://vlang.io/v.c
clean:
-rm v vc v.c