2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2006-10-30 07:30:46 +00:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 09:27:55 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2011-07-27 19:36:46 +02:00
|
|
|
#
|
|
|
|
# Copyright 2000, 2011 Oracle and/or its affiliates.
|
2006-10-30 07:30:46 +00:00
|
|
|
#
|
2008-04-11 09:27:55 +00:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2006-10-30 07:30:46 +00:00
|
|
|
#
|
2008-04-11 09:27:55 +00:00
|
|
|
# This file is part of OpenOffice.org.
|
2006-10-30 07:30:46 +00:00
|
|
|
#
|
2008-04-11 09:27:55 +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.
|
2006-10-30 07:30:46 +00:00
|
|
|
#
|
2008-04-11 09:27:55 +00:00
|
|
|
# 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).
|
2006-10-30 07:30:46 +00:00
|
|
|
#
|
2008-04-11 09:27:55 +00:00
|
|
|
# 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.
|
2006-10-30 07:30:46 +00:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
2011-02-02 11:46:03 +01:00
|
|
|
|
2011-07-27 19:36:46 +02:00
|
|
|
$(eval $(call gb_Module_Module,basctl))
|
2006-10-30 07:30:46 +00:00
|
|
|
|
2012-02-27 16:31:42 +02:00
|
|
|
ifneq ($(DISABLE_SCRIPTING),TRUE)
|
2012-01-20 17:20:11 +02:00
|
|
|
|
2011-07-27 19:36:46 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,basctl,\
|
|
|
|
AllLangResTarget_basctl \
|
|
|
|
Library_basctl \
|
|
|
|
))
|
2006-10-30 07:30:46 +00:00
|
|
|
|
2012-01-20 17:20:11 +02:00
|
|
|
endif
|
|
|
|
|
2012-02-02 18:12:02 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,basctl,\
|
2012-08-22 17:33:39 +02:00
|
|
|
Package_uiconfig \
|
2012-02-02 18:12:02 +02:00
|
|
|
))
|
|
|
|
|
2011-07-30 23:01:27 +03:00
|
|
|
# vim: set noet sw=4 ts=4:
|