OSDN Git Service

Remove extraneous quotation mark in template file
[android-x86/build.git] / core / static_library.mk
1 ###########################################################
2 ## Standard rules for building a static library.
3 ##
4 ## Additional inputs from base_rules.make:
5 ## None.
6 ##
7 ## LOCAL_MODULE_SUFFIX will be set for you.
8 ###########################################################
9
10 ifeq ($(strip $(LOCAL_MODULE_CLASS)),)
11 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
12 endif
13 ifeq ($(strip $(LOCAL_MODULE_SUFFIX)),)
14 LOCAL_MODULE_SUFFIX := .a
15 endif
16 LOCAL_UNINSTALLABLE_MODULE := true
17
18 include $(BUILD_SYSTEM)/binary.mk
19
20 ifeq ($(LOCAL_RAW_STATIC_LIBRARY),true)
21 LOCAL_RAW_STATIC_LIBRARY:=
22 $(all_objects) : TARGET_PROJECT_INCLUDES := 
23 $(all_objects) : TARGET_C_INCLUDES := 
24 $(all_objects) : TARGET_GLOBAL_CFLAGS := 
25 $(all_objects) : TARGET_GLOBAL_CPPFLAGS := 
26 endif
27
28 $(LOCAL_BUILT_MODULE): $(built_whole_libraries)
29 $(LOCAL_BUILT_MODULE): $(all_objects)
30         $(transform-o-to-static-lib)