blob: ad61a4c07086add52afdb5ad8187e47384579431 [file] [log] [blame]
Colin Cross8469d802014-02-13 17:17:01 -08001generated_sources := $(local-generated-sources-dir)
Wink Savilleee836ae2012-09-25 05:49:13 -07002
3SRC := $(call my-dir)/include/$(addprefix vnd_, $(addsuffix .txt,$(basename $(TARGET_DEVICE))))
4ifeq (,$(wildcard $(SRC)))
5# configuration file does not exist. Use default one
6SRC := $(call my-dir)/include/vnd_generic.txt
7endif
Colin Cross8469d802014-02-13 17:17:01 -08008GEN := $(generated_sources)/vnd_buildcfg.h
Wink Savilleee836ae2012-09-25 05:49:13 -07009TOOL := $(TOP_DIR)external/bluetooth/bluedroid/tools/gen-buildcfg.sh
10
11$(GEN): PRIVATE_PATH := $(call my-dir)
12$(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
13$(GEN): $(SRC) $(TOOL)
14 $(transform-generated-source)
15
16LOCAL_GENERATED_SOURCES += $(GEN)