Sukapura: tdf#147664 Shrink some icons to make them balance
[LibreOffice.git] / external / libzmf / ExternalProject_libzmf.mk
blobd5f06fb71ee6d46cb3e4a355bd80dfaa55de7707
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,libzmf))
12 $(eval $(call gb_ExternalProject_use_autoconf,libzmf,build))
14 $(eval $(call gb_ExternalProject_register_targets,libzmf,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libzmf,\
19 boost_headers \
20 icu \
21 libpng \
22 revenge \
23 zlib \
26 $(call gb_ExternalProject_get_state_target,libzmf,build) :
27 $(call gb_Trace_StartRange,libzmf,EXTERNAL)
28 $(call gb_ExternalProject_run,build,\
29 export PKG_CONFIG="" \
30 && MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
31 --with-pic \
32 --enable-static \
33 --disable-shared \
34 --without-docs \
35 --disable-tests \
36 --disable-tools \
37 --disable-debug \
38 --disable-werror \
39 --disable-weffc \
40 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
41 CXXFLAGS="$(gb_CXXFLAGS) $(if $(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS))" \
42 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
43 $(gb_CONFIGURE_PLATFORMS) \
44 && $(MAKE) \
46 $(call gb_Trace_EndRange,libzmf,EXTERNAL)
48 # vim: set noet sw=4 ts=4: