1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/Makefile
Alexander Medvednikov b16828dd4d simpler Makefile
2019-06-25 21:46:07 +02:00

12 lines
107 B
Makefile

all: v
v: v.c
cc -std=gnu11 -w -o v v.c
./v -o v .
v.c:
wget https://vlang.io/v.c
clean:
-rm vc v.c