blob: 2df2434a3d14c5d4f718183f2e48a101e8ae3d2b (
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
|
## Process this file with automake to create Makefile.in.
AUTOMAKE_OPTIONS = 1.7
SUBDIRS= pango modules examples docs tools tests
EXTRA_DIST = \
pango.pc.in \
pangox.pc.in \
pangoxft.pc.in \
pangoft2.pc.in \
pangowin32.pc.in \
pango-uninstalled.pc.in \
pangox-uninstalled.pc.in \
pangoxft-uninstalled.pc.in \
pangoft2-uninstalled.pc.in \
pangowin32-uninstalled.pc.in \
TODO.xml \
README.win32 \
pango-zip.sh \
sanitize-la.sh
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = pango.pc
if HAVE_X
pkgconfig_DATA += pangox.pc
endif
if HAVE_XFT
pkgconfig_DATA += pangoxft.pc
endif
if HAVE_FREETYPE
pkgconfig_DATA += pangoft2.pc
endif
if HAVE_WIN32
pkgconfig_DATA += pangowin32.pc
endif
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
|