Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / external / libpagemaker / ExternalProject_libpagemaker.mk
blobd663ffaf9ea9ac8fc57eb2b24f1947d2ae3db887
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,libpagemaker))
12 $(eval $(call gb_ExternalProject_use_autoconf,libpagemaker,build))
14 $(eval $(call gb_ExternalProject_register_targets,libpagemaker,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libpagemaker,\
19 boost_headers \
20 revenge \
23 $(call gb_ExternalProject_get_state_target,libpagemaker,build) :
24 $(call gb_Trace_StartRange,libpagemaker,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 --disable-tools \
33 --disable-debug \
34 --disable-werror \
35 --disable-weffc \
36 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
37 CXXFLAGS="$(gb_CXXFLAGS) $(call gb_ExternalProject_get_build_flags,libpagemaker)" \
38 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
39 LDFLAGS="$(call gb_ExternalProject_get_link_flags,libpagemaker)" \
40 $(gb_CONFIGURE_PLATFORMS) \
41 && $(MAKE) \
43 $(call gb_Trace_EndRange,libpagemaker,EXTERNAL)
45 # vim: set noet sw=4 ts=4: