Lines Matching refs:library
18 # We use the GNU Make Standard Library
21 # If NDK_TRACE is enabled then calls to the library functions are
190 module-add-static-library = $(call module-add,$1,$2,$3,static)
191 module-add-shared-library = $(call module-add,$1,$2,$3,shared)
201 module-is-static-library = $(call module-is-type,$1,static)
202 module-is-shared-library = $(call module-is-type,$1,shared)
221 # 2: list/set of static library modules this module depends on.
233 # 2: list/set of shared library modules this module depends on.
565 # Function : host-static-library-path
566 # Arguments : 1: library module name (e.g. 'foo')
567 # Returns : location of generated host library name (e.g. '..../libfoo.a)
568 # Usage : $(call host-static-library-path,<modulename>)
570 host-static-library-path = $(HOST_OUT)/lib$1.a
581 # Function : static-library-path
582 # Arguments : 1: library module name (e.g. 'foo')
583 # Returns : location of generated static library name (e.g. '..../libfoo.a)
584 # Usage : $(call static-library-path,<modulename>)
586 static-library-path = $(TARGET_OUT)/lib$1.a
589 # Function : shared-library-path
590 # Arguments : 1: library module name (e.g. 'foo')
591 # Returns : location of generated shared library name (e.g. '..../libfoo.so)
592 # Usage : $(call shared-library-path,<modulename>)
594 shared-library-path = $(TARGET_OUT)/lib$1.so