2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2010-04-17 12:41:17 +02:00
|
|
|
#
|
2012-11-15 17:28:16 +00:00
|
|
|
# This file is part of the LibreOffice project.
|
2010-04-17 12:41:17 +02:00
|
|
|
#
|
2012-11-15 17:28:16 +00: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/.
|
2010-04-17 12:41:17 +02:00
|
|
|
#
|
2012-11-15 17:28:16 +00:00
|
|
|
# This file incorporates work covered by the following license notice:
|
2010-04-17 12:41:17 +02:00
|
|
|
#
|
2012-11-15 17:28:16 +00:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
|
|
# with this work for additional information regarding copyright
|
|
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
2010-04-17 12:41:17 +02:00
|
|
|
#
|
|
|
|
|
2010-06-26 01:29:37 +02:00
|
|
|
$(eval $(call gb_Module_Module,svtools))
|
2010-04-17 12:41:17 +02:00
|
|
|
|
2010-06-26 01:29:37 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,svtools,\
|
|
|
|
Library_svt \
|
2010-04-17 12:41:17 +02:00
|
|
|
))
|
2010-06-26 01:29:37 +02:00
|
|
|
|
2013-11-13 02:12:48 +01:00
|
|
|
$(eval $(call gb_Module_add_l10n_targets,svtools,\
|
|
|
|
AllLangResTarget_svt \
|
2013-12-16 16:51:35 +01:00
|
|
|
UIConfig_svt \
|
2013-11-13 02:12:48 +01:00
|
|
|
))
|
|
|
|
|
2014-03-16 20:53:44 +01:00
|
|
|
$(eval $(call gb_Module_add_check_targets,svtools,\
|
2014-07-23 21:22:33 +02:00
|
|
|
CppunitTest_svtools_graphic \
|
2014-03-16 20:53:44 +01:00
|
|
|
CppunitTest_svtools_html \
|
|
|
|
))
|
|
|
|
|
2014-02-27 16:19:43 +01:00
|
|
|
ifeq ($(CROSS_COMPILING),)
|
2012-05-25 11:28:55 +01:00
|
|
|
|
2012-12-12 01:07:09 +02:00
|
|
|
ifneq ($(OS),WNT)
|
2012-05-25 11:28:55 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,svtools,\
|
|
|
|
Executable_langsupport \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2011-07-14 15:25:51 +03:00
|
|
|
endif
|
|
|
|
|
2012-11-15 17:28:16 +00:00
|
|
|
ifneq ($(OOO_JUNIT_JAR),)
|
2011-01-11 21:16:21 +01:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,svtools,\
|
|
|
|
JunitTest_svtools_unoapi \
|
|
|
|
))
|
2012-11-15 17:28:16 +00:00
|
|
|
endif
|
2011-01-11 21:16:21 +01:00
|
|
|
|
2010-06-26 01:29:37 +02:00
|
|
|
#todo: javapatchres
|
|
|
|
#todo: jpeg on mac in svtools/util/makefile.mk
|
|
|
|
#todo: deliver errtxt.src as ehdl.srs
|
|
|
|
#todo: nooptfiles filter, filterconfigitem, FilterConfigCache, SvFilterOptionsDialog
|
|
|
|
#todo: map file
|
|
|
|
|
2010-04-17 12:41:17 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|