v/Makefile

131 lines
2.3 KiB
Makefile
Raw Normal View History

CC ?= cc
2020-01-05 20:13:35 +01:00
CFLAGS ?=
LDFLAGS ?=
2019-12-25 14:14:08 +01:00
TMPDIR ?= /tmp
VROOT ?= .
2020-06-02 18:11:58 +02:00
VC ?= ./vc
V ?= ./v
VCREPO ?= https://github.com/vlang/vc
TCCREPO ?= https://github.com/vlang/tccbin
VCFILE := v.c
TMPTCC := $(VROOT)/thirdparty/tcc
TCCBRANCH := thirdparty-unknown-unknown
GITCLEANPULL := git clean -xf && git pull --quiet
GITFASTCLONE := git clone --depth 1 --quiet --single-branch
#### 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 15:13:25 +02:00
WIN32 := 1
V:=./v.exe
2019-10-13 15:13:25 +02:00
endif
ifeq ($(_SYS),Linux)
2019-10-13 15:13:25 +02:00
LINUX := 1
TCCBRANCH := thirdparty-linux-amd64
endif
ifeq ($(_SYS),Darwin)
MAC := 1
TCCBRANCH := thirdparty-macos-amd64
endif
2020-02-10 09:00:26 +01:00
ifeq ($(_SYS),FreeBSD)
LDFLAGS += -lexecinfo
endif
2019-11-21 13:03:45 +01:00
ifdef ANDROID_ROOT
ANDROID := 1
undefine LINUX
TCCBRANCH := thirdparty-linux-arm64
2019-11-21 13:03:45 +01:00
endif
#####
2019-11-21 13:03:45 +01:00
ifdef WIN32
TCCBRANCH := thirdparty-windows-amd64
VCFILE := v_win.c
endif
all: latest_vc latest_tcc
ifdef WIN32
$(CC) $(CFLAGS) -g -std=c99 -municode -w -o $(V) $(VC)/$(VCFILE) $(LDFLAGS)
2020-06-02 18:11:58 +02:00
ifdef prod
$(V) -prod self
2020-06-02 18:11:58 +02:00
else
$(V) self
2020-06-02 18:11:58 +02:00
endif
else
$(CC) $(CFLAGS) -g -std=gnu99 -w -o $(V) $(VC)/$(VCFILE) -lm -lpthread $(LDFLAGS)
ifdef ANDROID
chmod 755 v
2019-12-21 22:38:43 +01:00
endif
2020-06-02 18:11:58 +02:00
ifdef prod
$(V) -prod self
2020-06-02 18:11:58 +02:00
else
$(V) self
2020-06-02 18:11:58 +02:00
endif
ifndef ANDROID
$(MAKE) modules
2019-12-21 22:38:43 +01:00
endif
endif
2019-08-16 08:25:10 +02:00
@echo "V has been successfully built"
@$(V) -version
2019-06-23 04:34:41 +02:00
#clean: clean_tmp
#git clean -xf
clean:
rm -rf $(TMPTCC)
2020-06-02 18:11:58 +02:00
rm -rf $(VC)
2020-06-02 18:11:58 +02:00
latest_vc: $(VC)/.git/config
ifndef local
cd $(VC) && $(GITCLEANPULL)
else
@echo "Using local vc"
endif
fresh_vc:
2020-06-02 18:11:58 +02:00
$(GITFASTCLONE) $(VCREPO) $(VC)
latest_tcc: $(TMPTCC)/.git/config
ifndef ANDROID
2020-06-02 18:11:58 +02:00
ifndef local
cd $(TMPTCC) && $(GITCLEANPULL)
2020-06-02 18:11:58 +02:00
else
@echo "Using local tcc"
endif
endif
fresh_tcc:
ifndef ANDROID
rm -rf $(TMPTCC)
$(GITFASTCLONE) --branch $(TCCBRANCH) $(TCCREPO) $(TMPTCC)
2020-05-25 14:08:21 +02:00
endif
$(TMPTCC)/.git/config:
$(MAKE) fresh_tcc
2020-06-02 18:11:58 +02:00
$(VC)/.git/config:
$(MAKE) fresh_vc
selfcompile:
$(V) -cg -o v cmd/v
2020-01-14 16:17:17 +01:00
selfcompile-static:
$(V) -cg -cflags '--static' -o v-static cmd/v
2020-01-14 16:17:17 +01:00
modules: module_builtin module_strings module_strconv
module_builtin:
#$(V) build module vlib/builtin > /dev/null
2019-12-21 22:38:43 +01:00
module_strings:
#$(V) build module vlib/strings > /dev/null
2019-12-21 22:38:43 +01:00
module_strconv:
#$(V) build module vlib/strconv > /dev/null