1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/Makefile
Wink Saville 63431ead94 Remove vc dependency from all
Since v already has a dependency on vc it's not necessary for all to
depend on both vc and v it just needs v.
2019-06-25 21:41:49 +02:00

14 lines
119 B
Makefile

all: v
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