v/Makefile

39 lines
818 B
Makefile
Raw Normal View History

CC ?= cc
_SYS := $(shell uname 2>/dev/null || echo Unknown)
_SYS := $(patsubst MSYS%,MSYS,$(_SYS))
_SYS := $(patsubst MINGW%,MinGW,$(_SYS))
ifneq ($(filter $(_SYS),MSYS MinGW),)
WIN32:=1
endif
all: fresh_vc fresh_tcc
ifdef WIN32
2019-10-06 16:35:03 +02:00
$(CC) -std=c99 -w -o v0.exe vc/v_win.c
./v0.exe -o v.exe compiler
rm -f v0.exe
else
2019-09-17 17:01:49 +02:00
$(CC) -std=gnu11 -w -o v vc/v.c -lm
@(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)"; \
./v -o v compiler; \
fi)
endif
rm -rf vc/
2019-08-16 08:25:10 +02:00
@echo "V has been successfully built"
2019-06-23 04:34:41 +02:00
fresh_vc:
rm -rf vc/
git clone --depth 1 --quiet https://github.com/vlang/vc
fresh_tcc:
rm -rf /var/tmp/tcc/
git clone --depth 1 --quiet https://github.com/vmisc/tccbin /var/tmp/tcc
selfcompile:
./v -o v compiler