v/Makefile

82 lines
1.4 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
VCFILE := v.c
2020-05-13 14:50:33 +02: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 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
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
endif
#####
2019-11-21 13:03:45 +01:00
ifdef WIN32
VCFILE := v_win.c
endif
2020-05-13 14:50:33 +02:00
all: latest_vc
ifdef WIN32
2020-05-13 14:50:33 +02:00
$(CC) $(CFLAGS) -g -std=c99 -municode -w -o v.exe $(TMPVC) $(LDFLAGS)
./v.exe self
else
2020-05-13 14:50:33 +02:00
$(CC) $(CFLAGS) -g -std=gnu11 -w -o v $(TMPVC) $(LDFLAGS) -lm
ifdef ANDROID
chmod 755 v
2019-12-21 22:38:43 +01:00
endif
./v self
ifndef ANDROID
$(MAKE) modules
2019-12-21 22:38:43 +01:00
endif
endif
ifdef V_ALWAYS_CLEAN_TMP
$(MAKE) clean_tmp
endif
2019-08-16 08:25:10 +02:00
@echo "V has been successfully built"
2020-04-20 18:16:15 +02:00
@./v -version
2019-06-23 04:34:41 +02:00
clean: clean_tmp
git clean -xf
clean_tmp:
2020-05-13 14:50:33 +02:00
rm $(TMPVC)
2020-05-13 14:50:33 +02: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 16:17:17 +01:00
selfcompile-static:
./v -keepc -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:
2019-12-29 06:50:08 +01:00
#./v build module vlib/builtin > /dev/null
2019-12-21 22:38:43 +01:00
module_strings:
2019-12-29 06:50:08 +01:00
#./v build module vlib/strings > /dev/null
2019-12-21 22:38:43 +01:00
module_strconv:
2019-12-29 06:50:08 +01:00
#./v build module vlib/strconv > /dev/null