1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/Makefile

13 lines
244 B
Makefile
Raw Normal View History

CC ?= cc
PREFIX ?= /usr/local
2019-08-16 09:36:14 +03:00
all:
2019-08-17 19:24:22 +03:00
git clone --depth 1 --quiet https://github.com/vlang/vc
${CC} -std=gnu11 -w -o v vc/v.c -lm
2019-08-16 23:31:45 +03:00
./v -o v compiler
2019-08-17 19:24:22 +03:00
rm -rf vc
2019-08-16 09:25:10 +03:00
@echo "V has been successfully built"
2019-06-23 05:34:41 +03:00
2019-08-16 09:36:14 +03:00
symlink: v
ln -sf `pwd`/v ${PREFIX}/bin/v