You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
322 B
13 lines
322 B
4 months ago
|
bin_path := $(notdir $(HOST_OUT_EXECUTABLES))
|
||
|
|
||
|
fetcher_bin := $(HOST_OUT)/$(bin_path)/fetch_cvd
|
||
|
|
||
|
.PHONY: host_fetcher
|
||
|
host_fetcher: $(fetcher_bin)
|
||
|
|
||
|
# Build this by default when a developer types make
|
||
|
droidcore: $(fetcher_bin)
|
||
|
|
||
|
# Build and store them on the build server.
|
||
|
$(call dist-for-goals, dist_files, $(fetcher_bin))
|