1 LOCAL_PATH := $(call my-dir) 2 3 common_src_files := \ 4 commands.c utils.c 5 6 # 7 # Static library used in testing and executable 8 # 9 10 include $(CLEAR_VARS) 11 12 LOCAL_SRC_FILES := \ 13 $(common_src_files) 14 15 LOCAL_MODULE := libinstalld 16 17 LOCAL_MODULE_TAGS := eng tests 18 19 include $(BUILD_STATIC_LIBRARY) 20 21 # 22 # Executable 23 # 24 25 include $(CLEAR_VARS) 26 27 LOCAL_SRC_FILES := \ 28 installd.c \ 29 $(common_src_files) 30 31 LOCAL_SHARED_LIBRARIES := \ 32 libcutils \ 33 liblog \ 34 libselinux 35 36 LOCAL_STATIC_LIBRARIES := \ 37 libdiskusage 38 39 LOCAL_MODULE := installd 40 41 LOCAL_MODULE_TAGS := optional 42 43 include $(BUILD_EXECUTABLE) 44