v/Makefile

82 lines
1.4 KiB
Makefile
Raw Normal View History

CC ?= cc
2020-01-05 19:13:35 +00:00
CFLAGS ?=
LDFLAGS ?=
2019-12-25 13:14:08 +00:00
TMPDIR ?= /tmp
VCFILE := v.c
2020-05-13 12:50:33 +00:00
TMPVC := $(TMPDIR)/v.c
#### 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 13:13:25 +00:00
WIN32 := 1
endif
ifeq ($(_SYS),Linux)
2019-10-13 13:13:25 +00:00
LINUX := 1
endif
ifeq ($(_SYS),Darwin)
MAC := 1
endif
2020-02-10 08:00:26 +00:00
ifeq ($(_SYS),FreeBSD)
LDFLAGS += -lexecinfo
endif
2019-11-21 12:03:45 +00:00
ifdef ANDROID_ROOT
ANDROID := 1
undefine LINUX
endif
#####
2019-11-21 12:03:45 +00:00
ifdef WIN32
VCFILE := v_win.c
endif
2020-05-13 12:50:33 +00:00
all: latest_vc
ifdef WIN32
2020-05-13 12:50:33 +00:00
$(CC) $(CFLAGS) -g -std=c99 -municode -w -o v.exe $(TMPVC) $(LDFLAGS)
./v.exe self
else
2020-05-13 12:50:33 +00:00
$(CC) $(CFLAGS) -g -std=gnu11 -w -o v $(TMPVC) $(LDFLAGS) -lm
ifdef ANDROID
chmod 755 v
2019-12-21 21:38:43 +00:00
endif
./v self
ifndef ANDROID
$(MAKE) modules
2019-12-21 21:38:43 +00:00
endif
endif
ifdef V_ALWAYS_CLEAN_TMP
$(MAKE) clean_tmp
endif
2019-08-16 06:25:10 +00:00
@echo "V has been successfully built"
2020-04-20 16:16:15 +00:00
@./v -version
2019-06-23 02:34:41 +00:00
clean: clean_tmp
git clean -xf
clean_tmp:
2020-05-13 12:50:33 +00:00
rm $(TMPVC)
2020-05-13 12:50:33 +00:00
latest_vc:
curl "https://raw.githubusercontent.com/vlang/vc/master/v.c" -o $(TMPVC) -s
selfcompile:
./v -keepc -cg -o v cmd/v
2020-01-14 15:17:17 +00:00
selfcompile-static:
./v -keepc -cg -cflags '--static' -o v-static cmd/v
2020-01-14 15:17:17 +00:00
modules: module_builtin module_strings module_strconv
module_builtin:
2019-12-29 05:50:08 +00:00
#./v build module vlib/builtin > /dev/null
2019-12-21 21:38:43 +00:00
module_strings:
2019-12-29 05:50:08 +00:00
#./v build module vlib/strings > /dev/null
2019-12-21 21:38:43 +00:00
module_strconv:
2019-12-29 05:50:08 +00:00
#./v build module vlib/strconv > /dev/null