blob: b7a57d6aca988410f732358f7e44e2bb73b3ce03 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001# Copyright (C) 2008 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
17include $(CLEAR_VARS)
18LOCAL_MODULE := make-update-script
19LOCAL_SRC_FILES := make-update-script.c
20include $(BUILD_HOST_EXECUTABLE)
21
22ifneq ($(TARGET_SIMULATOR),true)
23
24include $(CLEAR_VARS)
25LOCAL_FORCE_STATIC_EXECUTABLE := true
26LOCAL_MODULE := add-property-tag
27LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
28LOCAL_MODULE_TAGS := debug
29LOCAL_SRC_FILES := add-property-tag.c
30LOCAL_STATIC_LIBRARIES := libc
31include $(BUILD_EXECUTABLE)
32
33include $(CLEAR_VARS)
34LOCAL_FORCE_STATIC_EXECUTABLE := true
35LOCAL_MODULE := check-lost+found
36LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
37LOCAL_MODULE_TAGS := debug
38LOCAL_SRC_FILES := check-lost+found.c
39LOCAL_STATIC_LIBRARIES := libcutils libc
40include $(BUILD_EXECUTABLE)
41
42endif # !TARGET_SIMULATOR