sc: filter: html: fix missing color scale conditional format
[LibreOffice.git] / external / libwpd / ExternalProject_libwpd.mk
blobbae99dcdfbc2e05fcae90d1fd15d45629f6b91df
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,libwpd))
12 $(eval $(call gb_ExternalProject_use_autoconf,libwpd,build))
14 $(eval $(call gb_ExternalProject_register_targets,libwpd,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libwpd,\
19 boost_headers \
20 revenge \
23 $(call gb_ExternalProject_get_state_target,libwpd,build) :
24 $(call gb_Trace_StartRange,libwpd,EXTERNAL)
25 $(call gb_ExternalProject_run,build,\
26 export PKG_CONFIG="" \
27 && MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
28 --with-pic \
29 $(if $(DISABLE_DYNLOADING), \
30 --disable-shared --enable-static, \
31 --enable-shared --disable-static) \
32 --without-docs \
33 --disable-tools \
34 --disable-debug \
35 --disable-werror \
36 $(if $(filter MACOSX,$(OS)), \
37 --prefix=/@.__________________________________________________OOO) \
38 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
39 CXXFLAGS="$(gb_CXXFLAGS) $(if $(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS))" \
40 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
41 $(if $(filter LINUX,$(OS)),$(if $(SYSTEM_REVENGE),, \
42 'LDFLAGS=-Wl$(COMMA)-z$(COMMA)origin \
43 -Wl$(COMMA)-rpath$(COMMA)\$$$$ORIGIN')) \
44 $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
45 && $(MAKE) \
46 $(if $(filter MACOSX,$(OS)),\
47 && $(PERL) $(SRCDIR)/solenv/bin/macosx-change-install-names.pl shl OOO \
48 $(EXTERNAL_WORKDIR)/src/lib/.libs/libwpd-0.10.10.dylib \
49 ) \
51 $(call gb_Trace_EndRange,libwpd,EXTERNAL)
53 # vim: set noet sw=4 ts=4: