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

39 lines
809 B
Makefile
Raw Normal View History

CC ?= cc
CFLAGS ?= -fPIC -O2
2019-06-28 08:56:03 +03:00
all: clean v
2019-06-29 14:02:53 +03:00
$(info V has been successfully built)
2019-06-23 05:34:41 +03:00
2019-06-25 22:46:07 +03:00
v: v.c
2019-06-29 19:05:57 +03:00
./v -o v compiler
2019-07-17 22:50:38 +03:00
v-release: v.c
./v -prod -o v compiler
2019-06-23 05:34:41 +03:00
v.c:
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
2019-07-17 22:50:38 +03:00
${CC} -std=gnu11 -w -o v v.c -lm
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' -not -path "examples/hot_code_reloading/*" -print0 | xargs -0 -n1 ./v
2019-06-26 01:58:17 +03:00
2019-06-23 05:34:41 +03:00
clean:
-rm -f v.c .v.c v vprod thirdparty/**/*.o
SOURCES = $(wildcard thirdparty/**/*.c)
OBJECTS := ${SOURCES:.c=.o}
thirdparty: ${OBJECTS}
2019-07-17 22:50:38 +03:00
thirdparty-release: ${OBJECTS}
strip ${OBJECTS}
debug: clean v thirdparty
release: CFLAGS += -pie
release: clean v-release thirdparty-release