2012-02-18 18:54:35 +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.
|
2012-02-18 18:54:35 +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/.
|
2012-02-18 18:54:35 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,sdext))
|
|
|
|
|
2012-11-21 17:19:28 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,sdext,\
|
2013-04-14 12:05:27 -04:00
|
|
|
Library_PresenterScreen \
|
2012-11-21 17:19:28 +01:00
|
|
|
))
|
|
|
|
|
2012-02-18 18:54:35 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,sdext,\
|
2013-10-05 23:07:24 +02:00
|
|
|
Library_PresentationMinimizer \
|
2012-02-18 18:54:35 +01:00
|
|
|
))
|
|
|
|
|
2012-11-29 11:27:45 +01:00
|
|
|
ifeq ($(ENABLE_PDFIMPORT),TRUE)
|
2012-02-18 18:54:35 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,sdext,\
|
2012-12-20 08:26:48 +01:00
|
|
|
CustomTarget_pdfimport \
|
2012-02-18 18:54:35 +01:00
|
|
|
Executable_xpdfimport \
|
|
|
|
Library_pdfimport \
|
2012-11-24 22:58:01 +01:00
|
|
|
Package_pdfimport_xpdfimport \
|
2012-03-12 16:24:21 +01:00
|
|
|
StaticLibrary_pdfimport_s \
|
2012-02-18 18:54:35 +01:00
|
|
|
))
|
2012-02-25 13:43:14 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_Module_add_check_targets,sdext,\
|
2014-02-08 08:57:43 +01:00
|
|
|
CppunitTest_sdext_pdfimport \
|
2012-11-24 22:58:01 +01:00
|
|
|
Executable_pdf2xml \
|
|
|
|
Executable_pdfunzip \
|
2012-02-25 13:43:14 +01:00
|
|
|
))
|
2012-02-18 18:54:35 +01:00
|
|
|
endif
|
|
|
|
|
2013-01-26 22:19:07 +01:00
|
|
|
# vim:set noet sw=4 ts=4:
|