fix(mac): remove tools complie on mac

This commit is contained in:
Tiny 2019-02-18 11:34:34 +08:00
parent 60a905d468
commit 2c5fd62a06

View File

@ -191,7 +191,13 @@ samples: install
tools: install
@$(call echo,Make $@)
ifeq ($(HOST_OS),Mac)
$(error "Can't make tools on $(HOST_OS)")
else
@$(call cmake_build,./tools/_build)
endif
.PHONY: tools