2011-08-09 12:12:48 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2006-10-30 02:03:11 -06:00
|
|
|
#
|
2012-07-17 06:30:48 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-07-28 11:17:31 -05:00
|
|
|
#
|
2012-07-17 06:30:48 -05:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2006-10-30 02:03:11 -06:00
|
|
|
#
|
|
|
|
|
2011-07-28 11:17:31 -05:00
|
|
|
$(eval $(call gb_Module_Module,basic))
|
2006-10-30 02:03:11 -06:00
|
|
|
|
2012-02-27 08:31:42 -06:00
|
|
|
ifneq ($(DISABLE_SCRIPTING),TRUE)
|
2012-01-20 09:20:11 -06:00
|
|
|
|
2011-07-28 11:17:31 -05:00
|
|
|
$(eval $(call gb_Module_add_targets,basic,\
|
|
|
|
AllLangResTarget_sb \
|
|
|
|
))
|
2006-10-30 02:03:11 -06:00
|
|
|
|
2011-10-18 13:50:21 -05:00
|
|
|
$(eval $(call gb_Module_add_check_targets,basic,\
|
|
|
|
CppunitTest_basic_scanner \
|
2012-05-14 09:33:45 -05:00
|
|
|
CppunitTest_basic_enable \
|
2012-07-05 07:54:17 -05:00
|
|
|
CppunitTest_basic_nested_struct \
|
2012-10-23 01:57:23 -05:00
|
|
|
CppunitTest_basic_coverage \
|
2013-03-07 10:23:45 -06:00
|
|
|
CppunitTest_basic_vba \
|
2011-10-21 04:08:02 -05:00
|
|
|
))
|
2011-10-18 13:50:21 -05:00
|
|
|
|
2012-01-20 09:20:11 -06:00
|
|
|
endif
|
|
|
|
|
2012-01-27 14:33:57 -06:00
|
|
|
$(eval $(call gb_Module_add_targets,basic,\
|
2012-03-05 13:36:01 -06:00
|
|
|
Library_sb \
|
2012-01-27 14:33:57 -06:00
|
|
|
Package_inc \
|
|
|
|
))
|
|
|
|
|
2011-07-30 15:02:30 -05:00
|
|
|
# vim: set noet sw=4 ts=4:
|