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
|
|
|
#
|
2012-07-17 12:30:48 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-07-28 18:17:31 +02:00
|
|
|
#
|
2012-07-17 12:30:48 +01: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 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
|
|
|
|
2014-10-21 23:21:37 +03:00
|
|
|
ifneq ($(filter SCRIPTING,$(BUILD_TYPE)),)
|
2012-01-20 17:20:11 +02:00
|
|
|
|
2013-11-13 02:12:48 +01:00
|
|
|
$(eval $(call gb_Module_add_l10n_targets,basic,\
|
2011-07-28 18:17:31 +02:00
|
|
|
AllLangResTarget_sb \
|
|
|
|
))
|
2006-10-30 08:03:11 +00:00
|
|
|
|
2011-10-18 14:50:21 -04:00
|
|
|
$(eval $(call gb_Module_add_check_targets,basic,\
|
2016-01-30 22:12:35 +01:00
|
|
|
CppunitTest_basic_scanner \
|
|
|
|
CppunitTest_basic_macros \
|
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,\
|
2012-03-05 21:36:01 +02:00
|
|
|
Library_sb \
|
2012-01-27 22:33:57 +02:00
|
|
|
))
|
|
|
|
|
2011-07-30 23:02:30 +03:00
|
|
|
# vim: set noet sw=4 ts=4:
|