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

116 lines
2.0 KiB
Makefile
Raw Normal View History

CC ?= cc
2020-01-05 22:13:35 +03:00
CFLAGS ?=
LDFLAGS ?=
2019-12-25 16:14:08 +03:00
TMPDIR ?= /tmp
VCFILE := v.c
TMPVC := $(TMPDIR)/vc
TMPTCC := /var/tmp/tcc
VCREPO := https://github.com/vlang/vc
TCCREPO := https://github.com/vlang/tccbin
GITCLEANPULL := git clean -xf && git pull --quiet
GITFASTCLONE := git clone --depth 1 --quiet
#### Platform detections and overrides:
_SYS := $(shell uname 2>/dev/null || echo Unknown)
_SYS := $(patsubst MSYS%,MSYS,$(_SYS))
_SYS := $(patsubst MINGW%,MinGW,$(_SYS))
ifneq ($(filter $(_SYS),MSYS MinGW),)
2019-10-13 16:13:25 +03:00
WIN32 := 1
endif
ifeq ($(_SYS),Linux)
2019-10-13 16:13:25 +03:00
LINUX := 1
endif
ifeq ($(_SYS),Darwin)
MAC := 1
endif
2020-02-10 11:00:26 +03:00
ifeq ($(_SYS),FreeBSD)
LDFLAGS += -lexecinfo
endif
2019-11-21 15:03:45 +03:00
ifdef ANDROID_ROOT
ANDROID := 1
undefine LINUX
endif
#####
2019-11-21 15:03:45 +03:00
ifdef WIN32
TCCREPO := https://github.com/vlang/tccbin_win
VCFILE := v_win.c
endif
all: latest_vc latest_tcc
ifdef WIN32
$(CC) $(CFLAGS) -g -std=c99 -municode -w -o v.exe $(TMPVC)/$(VCFILE) $(LDFLAGS)
./v.exe self
else
$(CC) $(CFLAGS) -g -std=gnu11 -w -o v $(TMPVC)/$(VCFILE) $(LDFLAGS) -lm -lpthread
ifdef ANDROID
chmod 755 v
2019-12-22 00:38:43 +03:00
endif
./v self
ifndef ANDROID
$(MAKE) modules
2019-12-22 00:38:43 +03:00
endif
endif
ifdef V_ALWAYS_CLEAN_TMP
$(MAKE) clean_tmp
endif
2019-08-16 09:25:10 +03:00
@echo "V has been successfully built"
2020-04-20 19:16:15 +03:00
@./v -version
2019-06-23 05:34:41 +03:00
#clean: clean_tmp
#git clean -xf
clean:
rm -rf $(TMPTCC)
rm -rf $(TMPVC)
latest_vc: $(TMPVC)/.git/config
cd $(TMPVC) && $(GITCLEANPULL)
fresh_vc:
rm -rf $(TMPVC)
$(GITFASTCLONE) $(VCREPO) $(TMPVC)
latest_tcc: $(TMPTCC)/.git/config
ifndef ANDROID
2020-05-25 15:08:21 +03:00
ifndef MAC
cd $(TMPTCC) && $(GITCLEANPULL)
endif
2020-05-25 15:08:21 +03:00
endif
fresh_tcc:
ifndef ANDROID
2020-05-25 15:08:21 +03:00
ifndef MAC
rm -rf $(TMPTCC)
$(GITFASTCLONE) $(TCCREPO) $(TMPTCC)
endif
2020-05-25 15:08:21 +03:00
endif
$(TMPTCC)/.git/config:
2020-05-25 15:08:21 +03:00
ifndef MAC
$(MAKE) fresh_tcc
2020-05-25 15:08:21 +03:00
endif
$(TMPVC)/.git/config:
$(MAKE) fresh_vc
selfcompile:
./v -keepc -cg -o v cmd/v
2020-01-14 18:17:17 +03:00
selfcompile-static:
./v -keepc -cg -cflags '--static' -o v-static cmd/v
2020-01-14 18:17:17 +03:00
modules: module_builtin module_strings module_strconv
module_builtin:
2019-12-29 08:50:08 +03:00
#./v build module vlib/builtin > /dev/null
2019-12-22 00:38:43 +03:00
module_strings:
2019-12-29 08:50:08 +03:00
#./v build module vlib/strings > /dev/null
2019-12-22 00:38:43 +03:00
module_strconv:
2019-12-29 08:50:08 +03:00
#./v build module vlib/strconv > /dev/null