v/compiler/Makefile

12 lines
107 B
Makefile
Raw Normal View History

all: v
2019-06-23 02:34:41 +00:00
2019-06-25 19:46:07 +00:00
v: v.c
cc -std=gnu11 -w -o v v.c
./v -o v .
2019-06-23 02:34:41 +00:00
v.c:
wget https://vlang.io/v.c
clean:
2019-06-25 19:46:07 +00:00
-rm vc v.c