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:
parent
a5d61f6da0
commit
69b4594bb3
6
Makefile
6
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user