Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / fontconfig / ExternalProject_fontconfig.mk
blobd882ecf0c163541847d01f23c3f63ef5df898f39
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,fontconfig))
12 $(eval $(call gb_ExternalProject_use_unpacked,fontconfig,fontconfig))
14 $(eval $(call gb_ExternalProject_use_packages,fontconfig,\
15 freetype \
18 $(eval $(call gb_ExternalProject_register_targets,fontconfig,\
19 build \
22 $(call gb_ExternalProject_get_state_target,fontconfig,build) :
23 cd $(EXTERNAL_WORKDIR) \
24 && CFLAGS="$(if $(debug),-g) $(gb_VISIBILITY_FLAGS)" $(if $(filter ANDROID,$(OS)),LIBS="-lm") \
25 ./configure \
26 --disable-shared \
27 --with-arch=arm \
28 --with-expat-includes=$(OUTDIR)/inc/external/expat \
29 --with-expat-lib=$(OUTDIR)/lib \
30 --with-freetype-config=$(OUTDIR)/bin/freetype-config \
31 --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
32 && $(MAKE) \
33 && touch $@
35 # vim: set noet sw=4 ts=4: