1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/Makefile

23 lines
452 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
2019-08-27 19:35:48 +03:00
all:
rm -rf vc/
2019-08-17 19:24:22 +03:00
git clone --depth 1 --quiet https://github.com/vlang/vc
ifdef WIN32
$(CC) -std=gnu11 -w -o v0.exe vc/v_win.c
./v0.exe -o v.exe compiler
else
2019-09-17 18:01:49 +03:00
$(CC) -std=gnu11 -w -o v vc/v.c -lm
endif
rm -rf vc/
2019-08-16 09:25:10 +03:00
@echo "V has been successfully built"
2019-06-23 05:34:41 +03:00