summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/Module_desktop.mk10
-rw-r--r--desktop/Pagein.mk104
-rw-r--r--desktop/Pagein_calc.mk4
-rw-r--r--desktop/Pagein_common.mk12
-rw-r--r--desktop/Pagein_draw.mk4
-rw-r--r--desktop/Pagein_impress.mk4
-rw-r--r--desktop/Pagein_writer.mk4
-rw-r--r--solenv/gbuild/Pagein.mk100
-rw-r--r--solenv/gbuild/TargetLocations.mk3
-rw-r--r--solenv/gbuild/gbuild.mk1
10 files changed, 118 insertions, 128 deletions
diff --git a/desktop/Module_desktop.mk b/desktop/Module_desktop.mk
index 0d3a01331754..c861ae80f82b 100644
--- a/desktop/Module_desktop.mk
+++ b/desktop/Module_desktop.mk
@@ -25,16 +25,6 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
-# FIXME: Okay, so this is ugly hack, because
-# include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))Pagein.mk
-# does not work from tail_build. I think I should just move Pagein.mk
-# into gbuild proper...
-#
-# On the other side, I wonder how many of our gbuild classes /
-# implementations would break when using with multiple repos as they
-# were originally intended, i.e., with different root dirs.
-include $(SRCDIR)/desktop/Pagein.mk
-
$(eval $(call gb_Module_Module,desktop))
$(eval $(call gb_Module_add_targets,desktop,\
diff --git a/desktop/Pagein.mk b/desktop/Pagein.mk
deleted file mode 100644
index d1b370ccec83..000000000000
--- a/desktop/Pagein.mk
+++ /dev/null
@@ -1,104 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License or as specified alternatively below. You may obtain a copy of
-# the License at http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# Major Contributor(s):
-# Copyright (C) 2011 Red Hat, Inc., David Tardon <dtardon@redhat.com>
-# (initial developer)
-#
-# All Rights Reserved.
-#
-# For minor contributions see the git repository.
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
-# instead of those above.
-
-desktop_Pagein_get_target = $(WORKDIR)/Pagein/desktop/$(1)
-desktop_Pagein_get_clean_target = $(WORKDIR)/Clean/Pagein/desktop/$(1)
-desktop_Pagein_get_outdir_target = $(OUTDIR)/bin/pagein-$(1)
-
-desktop_Pagein__istype = $(findstring $(2),$(call desktop_Pagein__prefix,$(1)))
-desktop_Pagein__prefix = $(firstword $(subst :, ,$(1)))
-desktop_Pagein__suffix = $(lastword $(subst :, ,$(1)))
-desktop_Pagein__object = $(call desktop_Pagein__suffix,$(1))
-desktop_Pagein__dir = $(call desktop_Pagein__prefix,$(1))
-desktop_Pagein__libname = $(notdir $(call gb_Library_get_target,$(call desktop_Pagein__suffix,$(1))))
-desktop_Pagein__libpath = $(call desktop_Pagein__dir,$(1))/$(call desktop_Pagein__libname,$(1))
-
-desktop_Pagein__make_path = \
-$(if $(call desktop_Pagein__istype,$(1),OBJ),\
- $(call desktop_Pagein__object,$(1)),\
- $(if $(call desktop_Pagein__istype,$(1),LIB),\
- $(call desktop_Pagein__libname,$(1)),\
- $(call desktop_Pagein__libpath,$(1))))
-
-define desktop_Pagein__command
-$(call gb_Output_announce,$(2),$(true),PAG,5)
-$(call gb_Helper_abbreviate_dirs,\
- mkdir -p $(dir $(1)) && rm -f $(1) \
- $(foreach object,$(OBJECTS),&& echo $(call desktop_Pagein__make_path,$(object)) >> $(1)))
-
-endef
-
-.PHONY : $(call desktop_Pagein_get_clean_target,%)
-$(call desktop_Pagein_get_clean_target,%) :
- $(call gb_Output_announce,$*,$(false),PAG,5)
- $(call gb_Helper_abbreviate_dirs,\
- rm -f $(call desktop_Pagein_get_target,$*) $(call desktop_Pagein_get_outdir_target,$*))
-
-$(call desktop_Pagein_get_target,%) :
- $(call desktop_Pagein__command,$@,$*,$^)
-
-$(call desktop_Pagein_get_outdir_target,%) : $(call desktop_Pagein_get_target,%)
- $(call gb_Deliver_deliver,$<,$@)
-
-define desktop_Pagein_Pagein
-$(call desktop_Pagein_get_target,$(1)) : OBJECTS :=
-$$(eval $$(call gb_Module_register_target,$(call desktop_Pagein_get_outdir_target,$(1)),$(call desktop_Pagein_get_clean_target,$(1))))
-$(call desktop_Pagein_get_outdir_target,$(1)) : $(call desktop_Pagein_get_target,$(1))
-
-endef
-
-define desktop_Pagein_add_lib
-$(call desktop_Pagein_get_target,$(1)) : OBJECTS += LIB:$(2)
-
-endef
-
-define desktop_Pagein_add_lib_with_dir
-$(call desktop_Pagein_get_target,$(1)) : OBJECTS += $(strip $(3)):$(2)
-
-endef
-
-define desktop_Pagein_add_object
-$(call desktop_Pagein_get_target,$(1)) : OBJECTS += OBJ:$(2)
-
-endef
-
-define desktop_Pagein_add_libs
-$(foreach lib,$(2),$(call desktop_Pagein_add_lib,$(1),$(lib)))
-
-endef
-
-define desktop_Pagein_add_libs_with_dir
-$(foreach lib,$(2),$(call desktop_Pagein_add_lib_with_dir,$(1),$(lib),$(3)))
-
-endef
-
-define desktop_Pagein_add_objects
-$(foreach object,$(2),$(call desktop_Pagein_add_object,$(1),$(object)))
-
-endef
-
-# vim: set ts=4 sw=4 noet:
diff --git a/desktop/Pagein_calc.mk b/desktop/Pagein_calc.mk
index a14668d38816..afbbb157b02e 100644
--- a/desktop/Pagein_calc.mk
+++ b/desktop/Pagein_calc.mk
@@ -25,9 +25,9 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
-$(eval $(call desktop_Pagein_Pagein,calc))
+$(eval $(call gb_Pagein_Pagein,calc))
-$(eval $(call desktop_Pagein_add_libs,calc,\
+$(eval $(call gb_Pagein_add_libs,calc,\
sc \
scui \
svx \
diff --git a/desktop/Pagein_common.mk b/desktop/Pagein_common.mk
index c7c1f0cc69a7..06cb024b339d 100644
--- a/desktop/Pagein_common.mk
+++ b/desktop/Pagein_common.mk
@@ -25,10 +25,10 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
-$(eval $(call desktop_Pagein_Pagein,common))
+$(eval $(call gb_Pagein_Pagein,common))
# sorted in approx. reverse load order (ld.so.1)
-$(eval $(call desktop_Pagein_add_libs,common,\
+$(eval $(call gb_Pagein_add_libs,common,\
i18npool \
$(if $(findstring YES,$(SYSTEM_ICU)),,\
icui18n \
@@ -54,7 +54,7 @@ $(eval $(call desktop_Pagein_add_libs,common,\
sb \
))
-$(eval $(call desktop_Pagein_add_libs_with_dir,common,\
+$(eval $(call gb_Pagein_add_libs_with_dir,common,\
stocservices \
bootstrap \
reg \
@@ -66,7 +66,7 @@ $(eval $(call desktop_Pagein_add_libs_with_dir,common,\
,../ure-link/lib \
))
-$(eval $(call desktop_Pagein_add_libs,common,\
+$(eval $(call gb_Pagein_add_libs,common,\
ucbhelper \
comphelper \
tl \
@@ -76,7 +76,7 @@ $(eval $(call desktop_Pagein_add_libs,common,\
tk \
))
-$(eval $(call desktop_Pagein_add_objects,common,\
+$(eval $(call gb_Pagein_add_objects,common,\
../ure-link/share/misc/types.rdb \
services.rdb \
oovbaapi.rdb \
@@ -85,7 +85,7 @@ $(eval $(call desktop_Pagein_add_objects,common,\
# TODO: Hmm, so it looks like there are duplicates in the list... Moreover,
# some that are conditional above are not conditional here (e.g., icule).
# I have doubts about gconfbe, desktopbe and localebe too.
-$(eval $(call desktop_Pagein_add_libs,common,\
+$(eval $(call gb_Pagein_add_libs,common,\
deployment \
deploymentmisc \
ucb1 \
diff --git a/desktop/Pagein_draw.mk b/desktop/Pagein_draw.mk
index 1808db444bfe..5795b0567979 100644
--- a/desktop/Pagein_draw.mk
+++ b/desktop/Pagein_draw.mk
@@ -25,9 +25,9 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
-$(eval $(call desktop_Pagein_Pagein,draw))
+$(eval $(call gb_Pagein_Pagein,draw))
-$(eval $(call desktop_Pagein_add_libs,draw,\
+$(eval $(call gb_Pagein_add_libs,draw,\
sd \
sdui \
svx \
diff --git a/desktop/Pagein_impress.mk b/desktop/Pagein_impress.mk
index 4d286e1dcb98..ae331f84712c 100644
--- a/desktop/Pagein_impress.mk
+++ b/desktop/Pagein_impress.mk
@@ -25,9 +25,9 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
-$(eval $(call desktop_Pagein_Pagein,impress))
+$(eval $(call gb_Pagein_Pagein,impress))
-$(eval $(call desktop_Pagein_add_libs,impress,\
+$(eval $(call gb_Pagein_add_libs,impress,\
sd \
sdui \
svx \
diff --git a/desktop/Pagein_writer.mk b/desktop/Pagein_writer.mk
index 935cb2de91b0..206e18a3d986 100644
--- a/desktop/Pagein_writer.mk
+++ b/desktop/Pagein_writer.mk
@@ -25,9 +25,9 @@
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
-$(eval $(call desktop_Pagein_Pagein,writer))
+$(eval $(call gb_Pagein_Pagein,writer))
-$(eval $(call desktop_Pagein_add_libs,writer,\
+$(eval $(call gb_Pagein_add_libs,writer,\
sw \
swui \
svx \
diff --git a/solenv/gbuild/Pagein.mk b/solenv/gbuild/Pagein.mk
new file mode 100644
index 000000000000..ead8f8a5df2d
--- /dev/null
+++ b/solenv/gbuild/Pagein.mk
@@ -0,0 +1,100 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the "License"); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# Copyright (C) 2011 Red Hat, Inc., David Tardon <dtardon@redhat.com>
+# (initial developer)
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+gb_Pagein__istype = $(findstring $(2),$(call gb_Pagein__prefix,$(1)))
+gb_Pagein__prefix = $(firstword $(subst :, ,$(1)))
+gb_Pagein__suffix = $(lastword $(subst :, ,$(1)))
+gb_Pagein__object = $(call gb_Pagein__suffix,$(1))
+gb_Pagein__dir = $(call gb_Pagein__prefix,$(1))
+gb_Pagein__libname = $(notdir $(call gb_Library_get_target,$(call gb_Pagein__suffix,$(1))))
+gb_Pagein__libpath = $(call gb_Pagein__dir,$(1))/$(call gb_Pagein__libname,$(1))
+
+gb_Pagein__make_path = \
+$(if $(call gb_Pagein__istype,$(1),OBJ),\
+ $(call gb_Pagein__object,$(1)),\
+ $(if $(call gb_Pagein__istype,$(1),LIB),\
+ $(call gb_Pagein__libname,$(1)),\
+ $(call gb_Pagein__libpath,$(1))))
+
+define gb_Pagein__command
+$(call gb_Output_announce,$(2),$(true),PAG,5)
+$(call gb_Helper_abbreviate_dirs,\
+ mkdir -p $(dir $(1)) && rm -f $(1) \
+ $(foreach object,$(OBJECTS),&& echo $(call gb_Pagein__make_path,$(object)) >> $(1)))
+
+endef
+
+.PHONY : $(call gb_Pagein_get_clean_target,%)
+$(call gb_Pagein_get_clean_target,%) :
+ $(call gb_Output_announce,$*,$(false),PAG,5)
+ $(call gb_Helper_abbreviate_dirs,\
+ rm -f $(call gb_Pagein_get_target,$*) $(call gb_Pagein_get_outdir_target,$*))
+
+$(call gb_Pagein_get_target,%) :
+ $(call gb_Pagein__command,$@,$*,$^)
+
+$(call gb_Pagein_get_outdir_target,%) : $(call gb_Pagein_get_target,%)
+ $(call gb_Deliver_deliver,$<,$@)
+
+define gb_Pagein_Pagein
+$(call gb_Pagein_get_target,$(1)) : OBJECTS :=
+$$(eval $$(call gb_Module_register_target,$(call gb_Pagein_get_outdir_target,$(1)),$(call gb_Pagein_get_clean_target,$(1))))
+$(call gb_Pagein_get_outdir_target,$(1)) : $(call gb_Pagein_get_target,$(1))
+
+endef
+
+define gb_Pagein_add_lib
+$(call gb_Pagein_get_target,$(1)) : OBJECTS += LIB:$(2)
+
+endef
+
+define gb_Pagein_add_lib_with_dir
+$(call gb_Pagein_get_target,$(1)) : OBJECTS += $(strip $(3)):$(2)
+
+endef
+
+define gb_Pagein_add_object
+$(call gb_Pagein_get_target,$(1)) : OBJECTS += OBJ:$(2)
+
+endef
+
+define gb_Pagein_add_libs
+$(foreach lib,$(2),$(call gb_Pagein_add_lib,$(1),$(lib)))
+
+endef
+
+define gb_Pagein_add_libs_with_dir
+$(foreach lib,$(2),$(call gb_Pagein_add_lib_with_dir,$(1),$(lib),$(3)))
+
+endef
+
+define gb_Pagein_add_objects
+$(foreach object,$(2),$(call gb_Pagein_add_object,$(1),$(object)))
+
+endef
+
+# vim: set ts=4 sw=4 noet:
diff --git a/solenv/gbuild/TargetLocations.mk b/solenv/gbuild/TargetLocations.mk
index 119bbedd67d3..7f5cefa866d5 100644
--- a/solenv/gbuild/TargetLocations.mk
+++ b/solenv/gbuild/TargetLocations.mk
@@ -32,6 +32,7 @@ gb_ComponentTarget_get_outdir_target = $(OUTDIR)/xml/component/$(1).component
gb_Executable_get_target = $(OUTDIR)/bin/$(1)$(gb_Executable_EXT)
gb_Executable_get_target_for_build = $(OUTDIR_FOR_BUILD)/bin/$(1)$(gb_Executable_EXT_for_build)
gb_Extension_get_outdir_target = $(OUTDIR)/bin/$(1).oxt
+gb_Pagein_get_outdir_target = $(OUTDIR)/bin/pagein-$(1)
gb_PackagePart_get_destinations = \
$(OUTDIR)/bin \
$(OUTDIR)/idl \
@@ -107,6 +108,7 @@ gb_ObjCxxObject_get_target = $(WORKDIR)/ObjCxxObject/$(1).o
gb_ObjCObject_get_target = $(WORKDIR)/ObjCObject/$(1).o
gb_Package_get_preparation_target = $(WORKDIR)/Package/prepared/$(1)
gb_Package_get_target = $(WORKDIR)/Package/$(1)
+gb_Pagein_get_target = $(WORKDIR)/Pagein/$(1)
gb_Pyuno_get_target = $(WORKDIR)/Pyuno/$(1).zip
gb_Pyuno_get_outdir_target = $(OUTDIR)/bin/$(1).zip
gb_PyunoFile_get_target = $(WORKDIR)/Pyuno/$(1)/contents/$(2)
@@ -168,6 +170,7 @@ $(eval $(call gb_Helper_make_clean_targets,\
Module \
PackagePart \
Package \
+ Pagein \
Pyuno \
Rdb \
ResTarget \
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index 5ad2378bc677..a26f4512c19d 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -294,6 +294,7 @@ include $(foreach class, \
Package \
CustomTarget \
ExternalLib \
+ Pagein \
Pyuno \
Rdb \
CppunitTest \