blob: b0bf7121c31c9d04e9fae5315af9e1ce02406a87 [file] [log] [blame]
Zonr Changc72c4dd2012-04-12 15:38:53 +08001#
2# Copyright (C) 2011-2012 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Shih-wei Liaob23b1562012-07-22 16:06:15 -070017# Build rules for extracting configuration from Android.mk
Colin Cross71df0502014-02-04 16:27:32 -080018generated_sources := $(call local-generated-sources-dir)
Zonr Changc72c4dd2012-04-12 15:38:53 +080019
Colin Cross71df0502014-02-04 16:27:32 -080020GEN_CONFIG_FROM_MK := $(generated_sources)/ConfigFromMk.h
Logan Chieneb567842011-07-14 19:58:42 +080021
Shih-wei Liaob23b1562012-07-22 16:06:15 -070022$(GEN_CONFIG_FROM_MK): PRIVATE_PATH := $(LIBBCC_ROOT_PATH)
23$(GEN_CONFIG_FROM_MK): PRIVATE_CUSTOM_TOOL = \
Zonr Changb4db7222012-02-06 14:21:20 +080024 $(PRIVATE_PATH)/tools/build/gen-config-from-mk.py < $< > $@
Shih-wei Liaob23b1562012-07-22 16:06:15 -070025$(GEN_CONFIG_FROM_MK): $(LIBBCC_ROOT_PATH)/libbcc-config.mk \
Zonr Changb4db7222012-02-06 14:21:20 +080026 $(LIBBCC_ROOT_PATH)/tools/build/gen-config-from-mk.py
Logan Chieneb567842011-07-14 19:58:42 +080027 $(transform-generated-source)
28
Shih-wei Liaob23b1562012-07-22 16:06:15 -070029LOCAL_GENERATED_SOURCES += $(GEN_CONFIG_FROM_MK)