Jooyung Han | 36c1f67 | 2019-05-28 17:17:47 +0900 | [diff] [blame] | 1 | # |
| 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 Jung | 7309679 | 2019-11-11 15:21:06 -0800 | [diff] [blame] | 21 | prebuilt_module_classes := SCRIPT ETC DATA RENDERSCRIPT_BITCODE |
Jooyung Han | 36c1f67 | 2019-05-28 17:17:47 +0900 | [diff] [blame] | 22 | ifeq ($(filter $(prebuilt_module_classes),$(LOCAL_MODULE_CLASS)),) |
| 23 | $(call pretty-error,misc_prebuilt_internal.mk is for $(prebuilt_module_classes) modules only) |
| 24 | endif |
| 25 | |
| 26 | include $(BUILD_SYSTEM)/base_rules.mk |
| 27 | |
Tom Cherry | 6215e43 | 2019-08-22 10:47:16 -0700 | [diff] [blame] | 28 | ifneq ($(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 Cherry | 6215e43 | 2019-08-22 10:47:16 -0700 | [diff] [blame] | 30 | else |
Jooyung Han | 36c1f67 | 2019-05-28 17:17:47 +0900 | [diff] [blame] | 31 | $(LOCAL_BUILT_MODULE) : $(my_prebuilt_src_file) |
| 32 | $(transform-prebuilt-to-target) |
Tom Cherry | 6215e43 | 2019-08-22 10:47:16 -0700 | [diff] [blame] | 33 | endif |
Jooyung Han | 0fbfb4b | 2019-07-22 15:31:55 +0900 | [diff] [blame] | 34 | |
Tom Cherry | 6215e43 | 2019-08-22 10:47:16 -0700 | [diff] [blame] | 35 | built_module := $(LOCAL_BUILT_MODULE) |