2011-12-24 10:16:48 +01:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-24 10:16:48 +01:00
|
|
|
#
|
2013-04-19 21:10:42 +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/.
|
2011-12-24 10:16:48 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,jurt))
|
|
|
|
|
2013-08-19 00:41:12 +03:00
|
|
|
ifneq ($(ENABLE_JAVA),)
|
2011-12-24 10:16:48 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_Module_add_targets,jurt,\
|
|
|
|
Jar_jurt \
|
|
|
|
Library_jpipe \
|
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
$(eval $(call gb_Module_add_targets,jurt,\
|
|
|
|
Library_jpipx \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2012-02-17 16:14:51 +01:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,jurt,\
|
2012-04-05 22:53:04 +02:00
|
|
|
CustomTarget_test_urp \
|
2012-11-28 20:35:31 +01:00
|
|
|
InternalUnoApi_test_urp \
|
2011-12-25 12:17:23 +01:00
|
|
|
JunitTest_bridgefactory \
|
|
|
|
JunitTest_connections \
|
|
|
|
JunitTest_java \
|
2012-02-17 16:14:51 +01:00
|
|
|
JunitTest_java_remote \
|
2011-12-25 12:17:23 +01:00
|
|
|
JunitTest_remote \
|
2012-02-17 16:14:51 +01:00
|
|
|
JunitTest_uno \
|
2011-12-25 13:05:26 +01:00
|
|
|
JunitTest_urp \
|
2011-12-25 12:17:23 +01:00
|
|
|
JunitTest_util \
|
|
|
|
))
|
|
|
|
|
2011-12-24 10:16:48 +01:00
|
|
|
endif
|
|
|
|
|
2013-01-26 22:19:07 +01:00
|
|
|
# vim:set noet sw=4 ts=4:
|