mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
make: do not pull tcc on macs
This commit is contained in:
parent
bc3e29e77b
commit
2eac2a5c0c
6
Makefile
6
Makefile
@ -79,17 +79,23 @@ fresh_vc:
|
|||||||
|
|
||||||
latest_tcc: $(TMPTCC)/.git/config
|
latest_tcc: $(TMPTCC)/.git/config
|
||||||
ifndef ANDROID
|
ifndef ANDROID
|
||||||
|
ifndef MAC
|
||||||
cd $(TMPTCC) && $(GITCLEANPULL)
|
cd $(TMPTCC) && $(GITCLEANPULL)
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
fresh_tcc:
|
fresh_tcc:
|
||||||
ifndef ANDROID
|
ifndef ANDROID
|
||||||
|
ifndef MAC
|
||||||
rm -rf $(TMPTCC)
|
rm -rf $(TMPTCC)
|
||||||
$(GITFASTCLONE) $(TCCREPO) $(TMPTCC)
|
$(GITFASTCLONE) $(TCCREPO) $(TMPTCC)
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
$(TMPTCC)/.git/config:
|
$(TMPTCC)/.git/config:
|
||||||
|
ifndef MAC
|
||||||
$(MAKE) fresh_tcc
|
$(MAKE) fresh_tcc
|
||||||
|
endif
|
||||||
|
|
||||||
$(TMPVC)/.git/config:
|
$(TMPVC)/.git/config:
|
||||||
$(MAKE) fresh_vc
|
$(MAKE) fresh_vc
|
||||||
|
Loading…
Reference in New Issue
Block a user