v/Makefile

21 lines
366 B
Makefile
Raw Normal View History

CC ?= cc
_SYS:=$(shell uname -o)
ifeq ($(_SYS),Msys)
WIN32:=1
endif
2019-08-27 18:35:48 +02:00
all:
rm -rf vc/
2019-08-17 18:24:22 +02:00
git clone --depth 1 --quiet https://github.com/vlang/vc
ifdef WIN32
${CC} -std=gnu11 -DUNICODE -D_UNICODE -w -o v0.exe vc/v_win.c
./v0.exe -o v.exe compiler
else
2019-08-17 18:24:22 +02:00
${CC} -std=gnu11 -w -o v vc/v.c -lm
2019-08-16 22:31:45 +02:00
./v -o v compiler
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