Bump version to 24.04.3.4
[LibreOffice.git] / external / libepubgen / ExternalProject_libepubgen.mk
blobf0dbf70a2eb226a263e28a0d12aef37900921f67
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) $(call gb_ExternalProject_get_build_flags,libepubgen)" \
36 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
37 LDFLAGS="$(call gb_ExternalProject_get_link_flags,libepubgen)" \
38 $(gb_CONFIGURE_PLATFORMS) \
39 && $(MAKE) \
41 $(call gb_Trace_EndRange,libepubgen,EXTERNAL)
43 # vim: set noet sw=4 ts=4: