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

Makefile: simplify

This commit is contained in:
Alexander Medvednikov 2019-08-16 09:36:14 +03:00
parent 40e788552c
commit 09340d48a0

View File

@ -1,28 +1,14 @@
CC ?= cc
CFLAGS ?= -O2 -fPIC
PREFIX ?= /usr/local
VC ?= 0.1.17
all: v
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
@echo "V has been successfully built"
v: v.c.out compiler/*.v vlib/**/*.v
./v.c.out -o v compiler
v-release: v
./v -cflags '${CFLAGS}' -o v compiler
strip v
v.c.out: v.${VC}.c
${CC} -std=gnu11 -w -o v.c.out v.${VC}.c -lm
v.${VC}.c:
#curl -o v.${VC}.c -LsSf https://github.com/vlang/vc/raw/${VC}/v.c
curl -o v.${VC}.c -LsSf https://raw.githubusercontent.com/vlang/vc/master/v.c
tools/vget: v
./v tools/vget.v
test: v
./v -prod -o vprod compiler # Test prod build
echo "Running V tests..."
@ -31,31 +17,5 @@ test: v
find examples -name '*.v' -print0 | xargs -0 -n1 ./v
bash ./compiler/tests/repl/repl.sh
clean:
-rm -f v.c v*.c v.c.out v vprod thirdparty/**/*.o tools/vget
find . -name '.*.c' -print0 | xargs -0 -n1 rm -f
SOURCES = $(wildcard thirdparty/**/*.c)
OBJECTS := ${SOURCES:.c=.o}
thirdparty: v ${OBJECTS}
thirdparty-release: v ${OBJECTS}
strip ${OBJECTS}
debug: clean v thirdparty
release: CFLAGS += -pie
release: clean v-release thirdparty-release
install: uninstall all
mkdir -p ${PREFIX}/lib/vlang ${PREFIX}/bin
cp -r v tools vlib thirdparty ${PREFIX}/lib/vlang
ln -sf ${PREFIX}/lib/vlang/v ${PREFIX}/bin/v
ln -sf ${PREFIX}/lib/vlang/tools/vget ${PREFIX}/bin/vget
uninstall:
rm -rf ${PREFIX}/{bin/v,bin/vget,lib/vlang}
symlink: v tools/vget
symlink: v
ln -sf `pwd`/v ${PREFIX}/bin/v