bump product version to 7.2.5.1
[LibreOffice.git] / external / libepubgen / ExternalProject_libepubgen.mk
blob096f0f6e534b47c0ce573a096252a22d4a3b266f
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_ExternalProject_ExternalProject,libepubgen))
12 $(eval $(call gb_ExternalProject_use_autoconf,libepubgen,build))
14 $(eval $(call gb_ExternalProject_register_targets,libepubgen,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libepubgen,\
19 boost_headers \
20 revenge \
23 $(call gb_ExternalProject_get_state_target,libepubgen,build) :
24 $(call gb_Trace_StartRange,libepubgen,EXTERNAL)
25 $(call gb_ExternalProject_run,build,\
26 export PKG_CONFIG="" \
27 && MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
28 --with-pic \
29 --enable-static \
30 --disable-shared \
31 --without-docs \
32 $(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \
33 --disable-werror \
34 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
35 CXXFLAGS="$(gb_CXXFLAGS) $(if $(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS))" \
36 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
37 $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
38 && $(MAKE) \
40 $(call gb_Trace_EndRange,libepubgen,EXTERNAL)
42 # vim: set noet sw=4 ts=4: