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

14 lines
272 B
Makefile
Raw Normal View History

CC ?= cc
CFLAGS ?= -O2 -fPIC
PREFIX ?= /usr/local
2019-08-16 09:36:14 +03:00
all:
curl -o v.c -LsSf https://raw.githubusercontent.com/vlang/vc/master/v.c
${CC} -std=gnu11 -w -o v v.c -lm
v -o v compiler
rm v.c
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