diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-04-07 23:22:08 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-04-08 01:05:52 +0200 |
commit | c923f7d2c210dc7846767fc0ac6ece2a0d7812a8 (patch) | |
tree | 4895fcbbf423daf410da5a8ef8e09ef8064c5c67 /io | |
parent | a16060116346533923c607bd406d3fea511b41ec (diff) |
gbuild: "use" vs. "add":
Naming convention for gbuild methods:
- "add" is used for stuff that is logically a part of the target
(i.e. not registered at the Module, but defined in the target's makefile)
- "use" is used for stuff that is logically a different target
(i.e. it is registered at the Module, has it's own makefile, may be
in a different module than the target)
Diffstat (limited to 'io')
-rw-r--r-- | io/Library_acceptor.mk | 4 | ||||
-rw-r--r-- | io/Library_connector.mk | 4 | ||||
-rw-r--r-- | io/Library_streams.mk | 4 | ||||
-rw-r--r-- | io/Library_textinstream.mk | 4 | ||||
-rw-r--r-- | io/Library_textoutstream.mk | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/io/Library_acceptor.mk b/io/Library_acceptor.mk index 12639b98baab..426460012f06 100644 --- a/io/Library_acceptor.mk +++ b/io/Library_acceptor.mk @@ -27,11 +27,11 @@ $(eval $(call gb_Library_Library,acceptor)) -$(eval $(call gb_Library_add_internal_api,acceptor,\ +$(eval $(call gb_Library_use_internal_api,acceptor,\ acceptor \ )) -$(eval $(call gb_Library_add_linked_libs,acceptor,\ +$(eval $(call gb_Library_use_libraries,acceptor,\ cppu \ cppuhelper \ sal \ diff --git a/io/Library_connector.mk b/io/Library_connector.mk index 07ddfb9b705f..95a03c0a8429 100644 --- a/io/Library_connector.mk +++ b/io/Library_connector.mk @@ -27,11 +27,11 @@ $(eval $(call gb_Library_Library,connector)) -$(eval $(call gb_Library_add_internal_api,connector,\ +$(eval $(call gb_Library_use_internal_api,connector,\ connectr \ )) -$(eval $(call gb_Library_add_linked_libs,connector,\ +$(eval $(call gb_Library_use_libraries,connector,\ cppu \ cppuhelper \ sal \ diff --git a/io/Library_streams.mk b/io/Library_streams.mk index 66d866371040..2745bf3e6af8 100644 --- a/io/Library_streams.mk +++ b/io/Library_streams.mk @@ -27,11 +27,11 @@ $(eval $(call gb_Library_Library,streams)) -$(eval $(call gb_Library_add_internal_api,streams,\ +$(eval $(call gb_Library_use_internal_api,streams,\ stm \ )) -$(eval $(call gb_Library_add_linked_libs,streams,\ +$(eval $(call gb_Library_use_libraries,streams,\ cppu \ cppuhelper \ sal \ diff --git a/io/Library_textinstream.mk b/io/Library_textinstream.mk index b6d0f82ec9a7..d9c67a245fc1 100644 --- a/io/Library_textinstream.mk +++ b/io/Library_textinstream.mk @@ -27,11 +27,11 @@ $(eval $(call gb_Library_Library,textinstream)) -$(eval $(call gb_Library_add_api,textinstream,\ +$(eval $(call gb_Library_use_api,textinstream,\ udkapi \ )) -$(eval $(call gb_Library_add_linked_libs,textinstream,\ +$(eval $(call gb_Library_use_libraries,textinstream,\ cppu \ cppuhelper \ sal \ diff --git a/io/Library_textoutstream.mk b/io/Library_textoutstream.mk index 6de90504ba73..0fdaf7ffd9c9 100644 --- a/io/Library_textoutstream.mk +++ b/io/Library_textoutstream.mk @@ -27,11 +27,11 @@ $(eval $(call gb_Library_Library,textoutstream)) -$(eval $(call gb_Library_add_api,textoutstream,\ +$(eval $(call gb_Library_use_api,textoutstream,\ udkapi \ )) -$(eval $(call gb_Library_add_linked_libs,textoutstream,\ +$(eval $(call gb_Library_use_libraries,textoutstream,\ cppu \ cppuhelper \ sal \ |