1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/Makefile
Alexander Medvednikov 6e50421f99 Makefile: minor fixes
2019-06-23 11:45:57 +02:00

14 lines
120 B
Makefile

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