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