From c923f7d2c210dc7846767fc0ac6ece2a0d7812a8 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 7 Apr 2012 23:22:08 +0200 Subject: 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) --- basctl/Library_basctl.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basctl') diff --git a/basctl/Library_basctl.mk b/basctl/Library_basctl.mk index cfc44884d069..897600b30e69 100644 --- a/basctl/Library_basctl.mk +++ b/basctl/Library_basctl.mk @@ -38,12 +38,12 @@ $(eval $(call gb_Library_set_include,basctl,\ -I$(WORKDIR)/SdiTarget/basctl/sdi \ )) -$(eval $(call gb_Library_add_api,basctl,\ +$(eval $(call gb_Library_use_api,basctl,\ udkapi \ offapi \ )) -$(eval $(call gb_Library_add_linked_libs,basctl,\ +$(eval $(call gb_Library_use_libraries,basctl,\ comphelper \ cppu \ cppuhelper \ @@ -124,7 +124,7 @@ $(eval $(call gb_SdiTarget_set_include,basctl/sdi/basslots,\ )) ifeq ($(OS),WNT) -$(eval $(call gb_Library_add_linked_libs,basctl,\ +$(eval $(call gb_Library_use_libraries,basctl,\ advapi32 \ gdi32 \ shell32 \ -- cgit