1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/Makefile
Alex Medvednikov baa4f9d0c9
Makefile: gnu11
2019-06-24 14:18:23 +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