2011-08-09 12:12:48 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2004-06-11 05:52:18 -05:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-10 14:49:06 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-06-11 05:52:18 -05:00
|
|
|
#
|
2008-04-10 14:49:06 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2004-06-11 05:52:18 -05:00
|
|
|
#
|
2008-04-10 14:49:06 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2004-06-11 05:52:18 -05:00
|
|
|
#
|
2008-04-10 14:49:06 -05: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.
|
2004-06-11 05:52:18 -05:00
|
|
|
#
|
2008-04-10 14:49:06 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-05-30 11:14:15 -05:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-04-10 14:49:06 -05:00
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2004-06-11 05:52:18 -05:00
|
|
|
#
|
2008-04-10 14:49:06 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
2011-05-30 11:14:15 -05:00
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
2008-04-10 14:49:06 -05:00
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2004-06-11 05:52:18 -05:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2011-05-30 11:14:15 -05:00
|
|
|
$(eval $(call gb_UnoApiTarget_UnoApiTarget,types))
|
2004-06-11 05:52:18 -05:00
|
|
|
|
2011-05-30 11:14:15 -05:00
|
|
|
$(eval $(call gb_UnoApiTarget_add_merge_rdbfiles,types,\
|
|
|
|
udkapi \
|
|
|
|
offapi \
|
|
|
|
))
|
2004-06-11 05:52:18 -05:00
|
|
|
|
2011-05-30 11:14:15 -05:00
|
|
|
$(eval $(call gb_UnoApiTarget_add_reference_rdbfile,types,\
|
|
|
|
offapi/type_reference/types \
|
|
|
|
))
|
2004-06-11 05:52:18 -05:00
|
|
|
|
2011-05-30 11:14:15 -05:00
|
|
|
# ugly hack for now!
|
|
|
|
statistic : $(gb_Helper_MISC)/api_statistic
|
2004-06-11 05:52:18 -05:00
|
|
|
|
2011-05-30 11:14:15 -05:00
|
|
|
$(gb_Helper_MISC)/api_statistic: $(call gb_UnoApiTarget_get_target,types)
|
|
|
|
$(PERL) util/checknewapi.pl $(call gb_UnoApiTarget_get_target,types) $(UNOAPI_REFERENCE_types) "$(RSCREVISION)" "$(gb_UnoApiTarget_REGVIEWTARGET)" > $@
|
2004-06-11 05:52:18 -05:00
|
|
|
|
2011-05-30 11:14:15 -05:00
|
|
|
# vim: set noet sw=4 ts=4:
|