update credits
[LibreOffice.git] / external / harfbuzz / ExternalProject_harfbuzz.mk
blob633d3658ce86ef5a8671989c0f03f7dbe615e2fd
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,harfbuzz))
12 $(eval $(call gb_ExternalProject_use_autoconf,harfbuzz,build))
14 $(eval $(call gb_ExternalProject_register_targets,harfbuzz,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,harfbuzz,\
19 icu \
20 graphite \
23 $(call gb_ExternalProject_get_state_target,harfbuzz,build) :
24 $(call gb_Trace_StartRange,harfbuzz,EXTERNAL)
25 $(call gb_ExternalProject_run,build,\
26 $(if $(CROSS_COMPILING),ICU_CONFIG=$(SRCDIR)/external/icu/cross-bin/icu-config) \
27 $(if $(SYSTEM_ICU),,ICU_CONFIG=$(SRCDIR)/external/icu/cross-bin/icu-config) \
28 GRAPHITE2_CFLAGS="$(GRAPHITE_CFLAGS)" \
29 GRAPHITE2_LIBS="$(GRAPHITE_LIBS)" \
30 $(gb_RUN_CONFIGURE) ./configure \
31 --enable-static \
32 --disable-shared \
33 --disable-gtk-doc \
34 --with-pic \
35 --with-icu=builtin \
36 --with-freetype=no \
37 --with-fontconfig=no \
38 --with-cairo=no \
39 --with-glib=no \
40 --with-graphite2=yes \
41 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
42 $(if $(gb_FULLDEPS),,--disable-dependency-tracking) \
43 --libdir=$(gb_UnpackedTarball_workdir)/harfbuzz/src/.libs \
44 $(gb_CONFIGURE_PLATFORMS) \
45 CXXFLAGS=' \
46 $(if $(filter ANDROID,$(OS)),-DHB_NO_MMAP=1,) \
47 $(call gb_ExternalProject_get_build_flags,harfbuzz) \
48 $(if $(ENABLE_RUNTIME_OPTIMIZATIONS),,-frtti) \
49 $(CXXFLAGS) $(CXXFLAGS_CXX11) \
50 $(if $(filter LINUX,$(OS)),-fvisibility=hidden)' \
51 LDFLAGS="$(call gb_ExternalProject_get_link_flags,harfbuzz)" \
52 MAKE=$(MAKE) \
53 && (cd $(EXTERNAL_WORKDIR)/src && $(MAKE) lib) \
55 $(call gb_Trace_EndRange,harfbuzz,EXTERNAL)
57 # vim: set noet sw=4 ts=4: