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 /smoketest | |
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 'smoketest')
-rw-r--r-- | smoketest/CppunitTest_smoketest.mk | 4 | ||||
-rw-r--r-- | smoketest/Jar_TestExtension.mk | 2 | ||||
-rw-r--r-- | smoketest/Library_smoketest.mk | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/smoketest/CppunitTest_smoketest.mk b/smoketest/CppunitTest_smoketest.mk index 2e614b681d10..851e2e4bd1e5 100644 --- a/smoketest/CppunitTest_smoketest.mk +++ b/smoketest/CppunitTest_smoketest.mk @@ -29,12 +29,12 @@ $(eval $(call gb_CppunitTest_CppunitTest,smoketest)) $(eval $(call gb_CppunitTest_abort_on_assertion,smoketest)) -$(eval $(call gb_CppunitTest_add_api,smoketest,\ +$(eval $(call gb_CppunitTest_use_api,smoketest,\ offapi \ udkapi \ )) -$(eval $(call gb_CppunitTest_add_linked_libs,smoketest,\ +$(eval $(call gb_CppunitTest_use_libraries,smoketest,\ cppu \ cppuhelper \ sal \ diff --git a/smoketest/Jar_TestExtension.mk b/smoketest/Jar_TestExtension.mk index 8276cc58135a..8069efe25d35 100644 --- a/smoketest/Jar_TestExtension.mk +++ b/smoketest/Jar_TestExtension.mk @@ -36,7 +36,7 @@ $(eval $(call gb_Jar_set_jarclasspath,TestExtension,\ unoil.jar \ )) -$(eval $(call gb_Jar_add_jars,TestExtension,\ +$(eval $(call gb_Jar_use_jars,TestExtension,\ $(OUTDIR)/bin/juh.jar \ $(OUTDIR)/bin/jurt.jar \ $(OUTDIR)/bin/ridl.jar \ diff --git a/smoketest/Library_smoketest.mk b/smoketest/Library_smoketest.mk index 80b7de0c9732..f14348e484dd 100644 --- a/smoketest/Library_smoketest.mk +++ b/smoketest/Library_smoketest.mk @@ -27,12 +27,12 @@ $(eval $(call gb_Library_Library,smoketest)) -$(eval $(call gb_Library_add_api,smoketest,\ +$(eval $(call gb_Library_use_api,smoketest,\ offapi \ udkapi \ )) -$(eval $(call gb_Library_add_linked_libs,smoketest,\ +$(eval $(call gb_Library_use_libraries,smoketest,\ cppu \ cppuhelper \ sal \ |