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

makefile: download tcc linux and windows only

This commit is contained in:
Nicolas Sauzede 2019-10-15 16:22:16 +02:00 committed by Alexander Medvednikov
parent a5d61f6da0
commit 69b4594bb3

View File

@ -39,8 +39,14 @@ fresh_vc:
git clone --depth 1 --quiet https://github.com/vlang/vc
fresh_tcc:
ifdef WIN32
rm -rf /var/tmp/tcc/
git clone --depth 1 --quiet https://github.com/vlang/tccbin_win /var/tmp/tcc
endif
ifdef LINUX
rm -rf /var/tmp/tcc/
git clone --depth 1 --quiet https://github.com/vlang/tccbin /var/tmp/tcc
endif
selfcompile:
./v v.v