1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/Makefile
Alexander Medvednikov e2c7d3b2d9 v symlink
2019-08-27 19:35:48 +03:00

11 lines
192 B
Makefile

CC ?= cc
all:
rm -rf vc/
git clone --depth 1 --quiet https://github.com/vlang/vc
${CC} -std=gnu11 -w -o v vc/v.c -lm
./v -o v compiler
rm -rf vc/
@echo "V has been successfully built"