2011-12-06 15:15:10 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-09-15 07:44:34 -05:00
|
|
|
# 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):
|
2011-12-06 15:15:10 -06:00
|
|
|
# Copyright (C) 2011 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
|
|
|
# (initial developer)
|
2011-09-15 07:44:34 -05:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2012-03-18 08:53:47 -05:00
|
|
|
$(eval $(call gb_Pagein_Pagein,common))
|
2011-09-15 07:44:34 -05:00
|
|
|
|
|
|
|
# sorted in approx. reverse load order (ld.so.1)
|
2012-03-18 09:24:42 -05:00
|
|
|
$(eval $(call gb_Pagein_add_objects,common,\
|
2013-02-06 09:24:43 -06:00
|
|
|
$(if $(MERGELIBS),merged) \
|
2011-09-15 07:44:34 -05:00
|
|
|
i18npool \
|
|
|
|
$(if $(findstring YES,$(SYSTEM_ICU)),,\
|
|
|
|
icui18n \
|
|
|
|
icule \
|
|
|
|
icuuc \
|
|
|
|
) \
|
|
|
|
lng \
|
|
|
|
xo \
|
|
|
|
fwe \
|
|
|
|
fwk \
|
|
|
|
fwi \
|
|
|
|
fwl \
|
|
|
|
package2 \
|
2012-01-14 19:58:30 -06:00
|
|
|
ucpfile1 \
|
|
|
|
ucb1 \
|
2011-09-15 07:44:34 -05:00
|
|
|
configmgr \
|
|
|
|
vclplug_gen \
|
|
|
|
$(if $(findstring TRUE,$(ENABLE_GTK)),vclplug_gtk) \
|
2012-05-14 20:09:41 -05:00
|
|
|
$(if $(findstring TRUE,$(ENABLE_TDE)),vclplug_tde) \
|
2011-09-15 07:44:34 -05:00
|
|
|
$(if $(findstring TRUE,$(ENABLE_KDE)),vclplug_kde) \
|
|
|
|
basegfx \
|
|
|
|
sot \
|
2012-07-06 15:28:03 -05:00
|
|
|
xmlscript \
|
2011-09-15 07:44:34 -05:00
|
|
|
sb \
|
|
|
|
stocservices \
|
|
|
|
bootstrap \
|
|
|
|
reg \
|
|
|
|
store \
|
|
|
|
reflection \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
|
|
|
ucbhelper \
|
|
|
|
comphelper \
|
|
|
|
tl \
|
|
|
|
utl \
|
|
|
|
svl \
|
|
|
|
vcl \
|
|
|
|
tk \
|
|
|
|
../ure-link/share/misc/types.rdb \
|
|
|
|
services.rdb \
|
|
|
|
oovbaapi.rdb \
|
|
|
|
deployment \
|
|
|
|
deploymentmisc \
|
|
|
|
xstor \
|
|
|
|
filterconfig \
|
|
|
|
uui \
|
|
|
|
svt \
|
|
|
|
spl \
|
|
|
|
avmedia \
|
|
|
|
helplinker \
|
|
|
|
sax \
|
2013-02-06 09:24:43 -06:00
|
|
|
gconfbe1 \
|
2011-09-15 07:44:34 -05:00
|
|
|
fsstorage \
|
2013-02-06 09:24:43 -06:00
|
|
|
desktopbe1 \
|
|
|
|
localebe1 \
|
|
|
|
ucpexpand1 \
|
2011-09-15 07:44:34 -05:00
|
|
|
sfx \
|
|
|
|
sofficeapp \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set ts=4 sw=4 et:
|