2011-08-09 12:12:48 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-01-25 10:22:00 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# Copyright 2009 by Sun Microsystems, Inc.
|
|
|
|
#
|
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
#
|
|
|
|
# This file is part of OpenOffice.org.
|
|
|
|
#
|
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,sot))
|
|
|
|
|
2012-04-07 16:22:10 -05:00
|
|
|
$(eval $(call gb_Library_use_package,sot,sot_inc))
|
2011-01-25 10:22:00 -06:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,sot,sot/util/sot))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,sot,\
|
|
|
|
$$(INCLUDE) \
|
2011-05-30 11:09:09 -05:00
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_api,sot,\
|
2011-05-30 11:09:09 -05:00
|
|
|
udkapi \
|
|
|
|
offapi \
|
2011-01-25 10:22:00 -06:00
|
|
|
))
|
|
|
|
|
2011-04-13 11:11:41 -05:00
|
|
|
$(eval $(call gb_Library_add_defs,sot,\
|
2012-01-04 05:39:53 -06:00
|
|
|
-DSOT_DLLIMPLEMENTATION \
|
2011-01-25 10:22:00 -06:00
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,sot,\
|
2011-01-25 10:22:00 -06:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
tl \
|
|
|
|
ucbhelper \
|
|
|
|
utl \
|
2011-02-02 10:05:04 -06:00
|
|
|
$(gb_STDLIBS) \
|
2011-01-25 10:22:00 -06:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,sot,\
|
|
|
|
sot/source/unoolestorage/xolesimplestorage \
|
|
|
|
sot/source/unoolestorage/register \
|
|
|
|
sot/source/base/formats \
|
|
|
|
sot/source/base/object \
|
|
|
|
sot/source/base/exchange \
|
|
|
|
sot/source/base/filelist \
|
|
|
|
sot/source/base/factory \
|
|
|
|
sot/source/sdstor/stg \
|
2011-01-26 03:30:19 -06:00
|
|
|
sot/source/sdstor/stgavl \
|
2011-01-25 10:22:00 -06:00
|
|
|
sot/source/sdstor/stgcache \
|
|
|
|
sot/source/sdstor/stgdir \
|
2011-01-26 03:30:19 -06:00
|
|
|
sot/source/sdstor/stgelem \
|
|
|
|
sot/source/sdstor/stgio \
|
2011-01-25 10:22:00 -06:00
|
|
|
sot/source/sdstor/stgole \
|
2011-01-26 03:30:19 -06:00
|
|
|
sot/source/sdstor/stgstrms \
|
|
|
|
sot/source/sdstor/storage \
|
|
|
|
sot/source/sdstor/storinfo \
|
|
|
|
sot/source/sdstor/ucbstorage \
|
|
|
|
))
|
2011-01-25 10:22:00 -06:00
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|