blob: a55e35d8ad7100cf2e2a6c19392df72bf011af00 (
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
|
## Process this file with automake to create Makefile.in.
SUBDIRS=modules pango examples docs tools fonts
EXTRA_DIST = \
pango.spec.in \
pango.pc.in \
pangox.pc.in \
pangoxft.pc.in \
pangoft2.pc.in \
TODO.xml \
README.win32
if HAVE_XFT
XFT_PC=pangoxft.pc
endif
if HAVE_FREETYPE
FT2_PC=pangoft2.pc
endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = pango.pc pangox.pc $(XFT_PC) $(FT2_PC)
dist-hook: pango.spec
cp pango.spec $(distdir)
|