blob: a56220772cdeae16a45e5ec611d71bd7a5eee913 [file] [log] [blame]
Jooyung Han36c1f672019-05-28 17:17:47 +09001#
2# Copyright (C) 2019 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
17############################################################
18# Internal build rules for misc prebuilt modules that don't need additional processing
19############################################################
20
Jaewoong Jung73096792019-11-11 15:21:06 -080021prebuilt_module_classes := SCRIPT ETC DATA RENDERSCRIPT_BITCODE
Jooyung Han36c1f672019-05-28 17:17:47 +090022ifeq ($(filter $(prebuilt_module_classes),$(LOCAL_MODULE_CLASS)),)
23$(call pretty-error,misc_prebuilt_internal.mk is for $(prebuilt_module_classes) modules only)
24endif
25
26include $(BUILD_SYSTEM)/base_rules.mk
27
Tom Cherry6215e432019-08-22 10:47:16 -070028ifneq ($(filter init%rc,$(notdir $(LOCAL_INSTALLED_MODULE)))$(filter %/etc/init,$(dir $(LOCAL_INSTALLED_MODULE))),)
29 $(eval $(call copy-init-script-file-checked,$(my_prebuilt_src_file),$(LOCAL_BUILT_MODULE)))
Tom Cherry6215e432019-08-22 10:47:16 -070030else
Jooyung Han36c1f672019-05-28 17:17:47 +090031$(LOCAL_BUILT_MODULE) : $(my_prebuilt_src_file)
32 $(transform-prebuilt-to-target)
Tom Cherry6215e432019-08-22 10:47:16 -070033endif
Jooyung Han0fbfb4b2019-07-22 15:31:55 +090034
Tom Cherry6215e432019-08-22 10:47:16 -070035built_module := $(LOCAL_BUILT_MODULE)