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
,\
18 $(eval
$(call gb_ExternalProject_use_externals
,libepubgen
,\
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 \
32 $(if
$(ENABLE_DEBUG
),--enable-debug
,--disable-debug
) \
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
)) \
40 $(call gb_Trace_EndRange
,libepubgen
,EXTERNAL
)
42 # vim: set noet sw=4 ts=4: