summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/Makefile.am
blob: 17752d438482e6fe55e29acca160d7f2947bd296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
## $Id$
## Wrapper Makefile.am to build FreeType for TeX Live.
##
##   Copyright 2016-2017 Karl Berry <tex-live@tug.org>
##   Copyright 2009-2015 Peter Breitenlohner <tex-live@tug.org>
##
##   This file is free software; the copyright holder
##   gives unlimited permission to copy and/or distribute it,
##   with or without modifications, as long as this notice is preserved.
##
## We want to re-distribute the whole original FreeType source tree.
##
EXTRA_DIST = $(FREETYPE_TREE)

## Changes applied to the original source tree
##
EXTRA_DIST += TLpatches

# Files not to be distributed
include $(srcdir)/../../am/dist_hook.am

noinst_DATA = libfreetype.a

# On MacOSX, using our zlib from TL results in a .a that is unusable; ld
# warns "file is not of required architecture", and does not read it.
# There is no apparent reason for this.  Using --without-zlib evidently
# causes freetype2 to use its internal zlib, so no functionality should
# be lost, even though it is not the cleanest solution.
ft-config:
	rm -rf ft-build
	$(MKDIR_P) ft-build
	cd ft-build && \
	  CC='$(CC)' CONFIG_SITE=/dev/null CONFIG_SHELL='$(SHELL)' \
	  $(SHELL) $(abs_srcdir)/$(FREETYPE_TREE)/configure \
	    $(config_args) --disable-shared \
	    --without-bzip2 \
	    --without-zlib \
	    --without-png \
	    --without-harfbuzz \
	    --prefix=$(abs_builddir)/ft-install \
	    --libdir=$(abs_builddir) \
	    --includedir=$(abs_builddir)
	echo timestamp >ft-config

# Unfortunately the FreeType build system installs the headers after the library;
# to get our dependencies right we wait for a second and then touch the library.
libfreetype.a: ft-config
	rm -rf ft-install
	cd ft-build \
	  && $(MAKE) $(AM_MAKEFLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) install
	sleep 1
	@for f in libfreetype.*; do touch $$f; done

clean-local:
	rm -rf freetype2 ft2build.h ft-* libfreetype.* pkgconfig

# Rebuild
rebuild_prereq =
rebuild_target = all
CLEANFILES =

include $(srcdir)/../../am/rebuild.am