1
0
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:
Delyan Angelov 2020-05-25 15:08:21 +03:00
parent bc3e29e77b
commit 2eac2a5c0c

View File

@ -79,17 +79,23 @@ fresh_vc:
latest_tcc: $(TMPTCC)/.git/config
ifndef ANDROID
ifndef MAC
cd $(TMPTCC) && $(GITCLEANPULL)
endif
endif
fresh_tcc:
ifndef ANDROID
ifndef MAC
rm -rf $(TMPTCC)
$(GITFASTCLONE) $(TCCREPO) $(TMPTCC)
endif
endif
$(TMPTCC)/.git/config:
ifndef MAC
$(MAKE) fresh_tcc
endif
$(TMPVC)/.git/config:
$(MAKE) fresh_vc