blob: d7a9ef67df05b7f7a2dabe7eb0b034927fca7fd3 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001ifneq ($(TARGET_SIMULATOR),true)
2
Kenny Root33b22642010-11-30 13:49:32 -08003LOCAL_PATH := $(call my-dir)
Kenny Root86c95842011-03-31 13:16:12 -07004
5common_src_files := \
6 commands.c utils.c
7
8#
9# Static library used in testing and executable
10#
11
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012include $(CLEAR_VARS)
13
Kenny Root33b22642010-11-30 13:49:32 -080014LOCAL_SRC_FILES := \
Kenny Root86c95842011-03-31 13:16:12 -070015 $(common_src_files)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016
Kenny Root86c95842011-03-31 13:16:12 -070017LOCAL_MODULE := libinstalld
18
19LOCAL_MODULE_TAGS := eng tests
20
21include $(BUILD_STATIC_LIBRARY)
22
23#
24# Executable
25#
26
27include $(CLEAR_VARS)
28
29LOCAL_SRC_FILES := \
30 installd.c \
31 $(common_src_files)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032
33LOCAL_SHARED_LIBRARIES := \
34 libcutils
35
Kenny Root33b22642010-11-30 13:49:32 -080036LOCAL_STATIC_LIBRARIES := \
37 libdiskusage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038
Kenny Root33b22642010-11-30 13:49:32 -080039LOCAL_MODULE := installd
40
41LOCAL_MODULE_TAGS := optional
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042
43include $(BUILD_EXECUTABLE)
44
Kenny Root33b22642010-11-30 13:49:32 -080045endif # !simulator