v/compiler/Makefile

14 lines
119 B
Makefile
Raw Normal View History

all: v
2019-06-23 04:34:41 +02:00
v: vc
2019-06-25 02:12:03 +02:00
./vc -o v .
2019-06-23 04:34:41 +02:00
vc: v.c
2019-06-24 14:18:23 +02:00
cc -std=gnu11 -w -o vc v.c
2019-06-23 04:34:41 +02:00
v.c:
wget https://vlang.io/v.c
clean:
-rm v vc v.c