v/Makefile

22 lines
528 B
Makefile
Raw Normal View History

CC ?= cc
CFLAGS ?= -O2 -fPIC
PREFIX ?= /usr/local
2019-08-16 08:36:14 +02: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 08:25:10 +02:00
@echo "V has been successfully built"
2019-06-23 04:34:41 +02:00
2019-06-26 01:26:26 +02:00
test: v
2019-06-29 18:05:57 +02:00
./v -prod -o vprod compiler # Test prod build
echo "Running V tests..."
2019-06-29 12:21:34 +02:00
find . -name '*_test.v' -print0 | xargs -0 -n1 ./v
2019-06-29 18:05:57 +02:00
echo "Building V examples..."
find examples -name '*.v' -print0 | xargs -0 -n1 ./v
bash ./compiler/tests/repl/repl.sh
2019-06-26 00:58:17 +02:00
2019-08-16 08:36:14 +02:00
symlink: v
ln -sf `pwd`/v ${PREFIX}/bin/v