blob: 42349bad1619c29e6f9bdd8c1f36d1a448eb5983 [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
Zach Johnson59199152015-02-27 14:08:41 -08009TOOL := $(LOCAL_PATH)/gen-buildcfg.sh
Wink Savilleee836ae2012-09-25 05:49:13 -070010
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)