1# Copyright (C) 2016 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15LOCAL_PATH:= $(call my-dir) 16 17################################################### 18 19include $(CLEAR_VARS) 20 21LOCAL_MODULE := ufdt_gen_test_dts 22LOCAL_SRC_FILES := ufdt_gen_test_dts.c 23 24include $(BUILD_HOST_EXECUTABLE) 25 26################################################### 27 28include $(CLEAR_VARS) 29 30LOCAL_MODULE := ufdt_apply_overlay 31LOCAL_SRC_FILES := ufdt_overlay_test_app.c util.c 32LOCAL_STATIC_LIBRARIES := \ 33 libufdt \ 34 libfdt \ 35 libufdt_sysdeps 36LOCAL_REQUIRED_MODULES := dtc 37 38include $(BUILD_HOST_EXECUTABLE) 39 40################################################### 41 42include $(CLEAR_VARS) 43 44LOCAL_MODULE := ufdt_apply_overlay 45LOCAL_SRC_FILES := ufdt_overlay_test_app.c util.c 46LOCAL_STATIC_LIBRARIES := \ 47 libufdt \ 48 libfdt \ 49 libufdt_sysdeps 50LOCAL_REQUIRED_MODULES := dtc 51 52include $(BUILD_EXECUTABLE) 53 54################################################### 55 56include $(CLEAR_VARS) 57 58LOCAL_MODULE := fdt_apply_overlay 59LOCAL_SRC_FILES := fdt_overlay_test_app.c util.c 60LOCAL_STATIC_LIBRARIES := \ 61 libfdt \ 62 libufdt_sysdeps 63LOCAL_REQUIRED_MODULES := dtc 64 65include $(BUILD_HOST_EXECUTABLE) 66 67################################################### 68 69include $(CLEAR_VARS) 70 71LOCAL_MODULE := extract_dtb 72LOCAL_SRC_FILES := extract_dtb.c util.c 73LOCAL_STATIC_LIBRARIES := \ 74 libfdt \ 75 libufdt_sysdeps 76LOCAL_REQUIRED_MODULES := dtc 77 78include $(BUILD_HOST_EXECUTABLE) 79 80################################################### 81 82include $(CLEAR_VARS) 83 84LOCAL_MODULE := fdt_apply_overlay 85LOCAL_SRC_FILES := fdt_overlay_test_app.c util.c 86LOCAL_STATIC_LIBRARIES := \ 87 libfdt \ 88 libufdt_sysdeps 89LOCAL_REQUIRED_MODULES := dtc 90 91include $(BUILD_EXECUTABLE) 92 93################################################### 94