2011-07-30 23:02:57 +03:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
2005-02-16 15:05:46 +00:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 10:34:39 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2011-01-26 12:32:27 +01:00
|
|
|
# Copyright 2009 by Sun Microsystems, Inc.
|
2005-02-16 15:05:46 +00:00
|
|
|
#
|
2008-04-11 10:34:39 +00:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2005-02-16 15:05:46 +00:00
|
|
|
#
|
2008-04-11 10:34:39 +00:00
|
|
|
# This file is part of OpenOffice.org.
|
2005-02-16 15:05:46 +00:00
|
|
|
#
|
2008-04-11 10:34:39 +00:00
|
|
|
# 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.
|
2005-02-16 15:05:46 +00:00
|
|
|
#
|
2008-04-11 10:34:39 +00:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-01-26 12:32:27 +01:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-04-11 10:34:39 +00:00
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2005-02-16 15:05:46 +00:00
|
|
|
#
|
2008-04-11 10:34:39 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
2011-01-26 12:32:27 +01:00
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
2008-04-11 10:34:39 +00:00
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2005-02-16 15:05:46 +00:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2011-01-26 12:32:27 +01:00
|
|
|
$(eval $(call gb_Module_Module,comphelper))
|
2007-09-20 15:40:53 +00:00
|
|
|
|
2011-01-26 12:32:27 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,comphelper,\
|
|
|
|
Package_inc \
|
|
|
|
Library_comphelp \
|
|
|
|
))
|
2005-02-16 15:05:46 +00:00
|
|
|
|
2011-02-01 19:21:09 +01:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,comphelper,\
|
|
|
|
JunitTest_comphelper_complex \
|
|
|
|
))
|
|
|
|
|
2011-07-30 23:02:57 +03:00
|
|
|
# vim: set noet sw=4 ts=4:
|