1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/Makefile
2019-06-25 23:05:16 +02:00

12 lines
140 B
Makefile

all: v
v: v.c
cc -std=gnu11 -w -o v v.c
./v -o v .
v.c:
wget https://raw.githubusercontent.com/vlang/vc/master/v.c
clean:
-rm vc v.c