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

22 lines
528 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-06-26 02:26:26 +03:00
test: v
2019-06-29 19:05:57 +03:00
./v -prod -o vprod compiler # Test prod build
echo "Running V tests..."
2019-06-29 13:21:34 +03:00
find . -name '*_test.v' -print0 | xargs -0 -n1 ./v
2019-06-29 19:05:57 +03:00
echo "Building V examples..."
find examples -name '*.v' -print0 | xargs -0 -n1 ./v
bash ./compiler/tests/repl/repl.sh
2019-06-26 01:58:17 +03:00
2019-08-16 09:36:14 +03:00
symlink: v
ln -sf `pwd`/v ${PREFIX}/bin/v