1bin_path := $(notdir $(HOST_OUT_EXECUTABLES))
2
3fetcher_bin := $(HOST_OUT)/$(bin_path)/fetch_cvd
4
5.PHONY: host_fetcher
6host_fetcher: $(fetcher_bin)
7
8# Build this by default when a developer types make
9droidcore: $(fetcher_bin)
10
11# Build and store them on the build server.
12$(call dist-for-goals, dist_files, $(fetcher_bin))
13