makefile: download tcc linux and windows only
parent
a5d61f6da0
commit
69b4594bb3
6
Makefile
6
Makefile
|
@ -39,8 +39,14 @@ fresh_vc:
|
||||||
git clone --depth 1 --quiet https://github.com/vlang/vc
|
git clone --depth 1 --quiet https://github.com/vlang/vc
|
||||||
|
|
||||||
fresh_tcc:
|
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/
|
rm -rf /var/tmp/tcc/
|
||||||
git clone --depth 1 --quiet https://github.com/vlang/tccbin /var/tmp/tcc
|
git clone --depth 1 --quiet https://github.com/vlang/tccbin /var/tmp/tcc
|
||||||
|
endif
|
||||||
|
|
||||||
selfcompile:
|
selfcompile:
|
||||||
./v v.v
|
./v v.v
|
||||||
|
|
Loading…
Reference in New Issue