From 09340d48a0ecfe17430451c9831f6f2b548285d6 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 16 Aug 2019 09:36:14 +0300 Subject: [PATCH] Makefile: simplify --- Makefile | 52 ++++++---------------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/Makefile b/Makefile index 67f5368698..e77af9b2a7 100644 --- a/Makefile +++ b/Makefile @@ -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