v/Makefile

100 lines
1.9 KiB
Makefile
Raw Normal View History

CC ?= cc
VCFILE := v.c
TMPVC := /tmp/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 15:13:25 +02:00
WIN32 := 1
endif
ifeq ($(_SYS),Linux)
2019-10-13 15:13:25 +02:00
LINUX := 1
endif
ifeq ($(_SYS),Darwin)
MAC := 1
endif
2019-11-21 13:03:45 +01:00
ifdef ANDROID_ROOT
ANDROID := 1
undefine LINUX
endif
#####
2019-11-21 13:03:45 +01:00
ifdef WIN32
TCCREPO := https://github.com/vlang/tccbin_win
VCFILE := v_win.c
endif
all: latest_vc latest_tcc
ifdef WIN32
$(CC) -std=c99 -w -o v0.exe $(TMPVC)/$(VCFILE) $(LDFLAGS)
2019-10-31 20:30:35 +01:00
./v0.exe -o v.exe v.v
rm -f v0.exe
else
$(CC) -std=gnu11 -w -o v $(TMPVC)/$(VCFILE) $(LDFLAGS) -lm
ifdef ANDROID
chmod 755 v
endif
@(VC_V=`./v version | cut -f 3 -d " "`; \
V_V=`git rev-parse --short HEAD`; \
if [ $$VC_V != $$V_V ]; then \
echo "Self rebuild ($$VC_V => $$V_V)"; \
$(MAKE) selfcompile; \
fi)
ifndef ANDROID
$(MAKE) modules
endif
endif
2019-08-16 08:25:10 +02:00
@echo "V has been successfully built"
2019-06-23 04:34:41 +02:00
clean:
rm -rf $(TMPTCC)
rm -rf $(TMPVC)
git clean -xf
latest_vc: $(TMPVC)/.git/config
cd $(TMPVC) && $(GITCLEANPULL)
fresh_vc:
rm -rf $(TMPVC)
$(GITFASTCLONE) $(VCREPO) $(TMPVC)
latest_tcc: $(TMPTCC)/.git/config
ifndef ANDROID
cd $(TMPTCC) && $(GITCLEANPULL)
endif
fresh_tcc:
ifndef ANDROID
rm -rf $(TMPTCC)
$(GITFASTCLONE) $(TCCREPO) $(TMPTCC)
endif
$(TMPTCC)/.git/config:
$(MAKE) fresh_tcc
$(TMPVC)/.git/config:
$(MAKE) fresh_vc
selfcompile:
2019-10-23 11:17:08 +02:00
./v -o v v.v
modules: module_builtin module_strings module_strconv
module_builtin:
./v build module vlib/builtin > /dev/null
module_strings:
./v build module vlib/strings > /dev/null
module_strconv:
./v build module vlib/strconv > /dev/null