mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Make Makefile make windows build succesfully on MSYS2/mingw64
This commit is contained in:
parent
38d26c8080
commit
a206667b4d
10
Makefile
10
Makefile
@ -1,10 +1,20 @@
|
||||
CC ?= cc
|
||||
|
||||
_SYS:=$(shell uname -o)
|
||||
ifeq ($(_SYS),Msys)
|
||||
WIN32:=1
|
||||
endif
|
||||
|
||||
all:
|
||||
rm -rf vc/
|
||||
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
|
||||
${CC} -std=gnu11 -w -o v vc/v.c -lm
|
||||
./v -o v compiler
|
||||
endif
|
||||
rm -rf vc/
|
||||
@echo "V has been successfully built"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user