blob: c5c90d43f19612328d875219677037e3487236d2 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
libmandir = $(LIB_MAN_DIR)
libman_PRE = \
Xft.man \
$(Xft_sources)
Xft_sources = \
$(Xft_shadows:=.man)
Xft_shadows = \
XftCharExists \
XftCharFontSpecRender \
XftCharIndex \
XftCharSpecRender \
XftColorAllocName \
XftColorAllocValue \
XftColorFree \
XftDefaultHasRender \
XftDefaultSet \
XftDefaultSubstitute \
XftDrawChange \
XftDrawCharFontSpec \
XftDrawCharSpec \
XftDrawColormap \
XftDrawCreate \
XftDrawCreateAlpha \
XftDrawCreateBitmap \
XftDrawDestroy \
XftDrawDisplay \
XftDrawDrawable \
XftDrawGlyphFontSpec \
XftDrawGlyphSpec \
XftDrawGlyphs \
XftDrawPicture \
XftDrawRect \
XftDrawSetClip \
XftDrawSetClipRectangles \
XftDrawSetSubwindowMode \
XftDrawSrcPicture \
XftDrawString16 \
XftDrawString32 \
XftDrawString8 \
XftDrawStringUtf16 \
XftDrawStringUtf8 \
XftDrawVisual \
XftFontCheckGlyph \
XftFontClose \
XftFontCopy \
XftFontInfoCreate \
XftFontInfoDestroy \
XftFontInfoEqual \
XftFontInfoHash \
XftFontLoadGlyphs \
XftFontMatch \
XftFontOpen \
XftFontOpenInfo \
XftFontOpenName \
XftFontOpenPattern \
XftFontOpenXlfd \
XftFontUnloadGlyphs \
XftGetVersion \
XftGlyphExtents \
XftGlyphFontSpecRender \
XftGlyphRender \
XftGlyphSpecRender \
XftInit \
XftInitFtLibrary \
XftListFonts \
XftLockFace \
XftNameParse \
XftNameUnparse \
XftTextExtents16 \
XftTextExtents32 \
XftTextExtents8 \
XftTextExtentsUtf16 \
XftTextExtentsUtf8 \
XftTextRender16 \
XftTextRender16BE \
XftTextRender16LE \
XftTextRender32 \
XftTextRender32BE \
XftTextRender32LE \
XftTextRender8 \
XftTextRenderUtf16 \
XftTextRenderUtf8 \
XftUnlockFace \
XftXlfdParse
libman_DATA = $(libman_PRE:man=$(LIB_MAN_SUFFIX))
EXTRA_DIST = $(libman_PRE)
CLEANFILES = $(libman_DATA) $(Xft_sources)
SUFFIXES = .$(LIB_MAN_SUFFIX) .man
$(Xft_sources) :
$(AM_V_GEN)echo ".so man__libmansuffix__/Xft.__libmansuffix__" > $@
# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
.man.$(LIB_MAN_SUFFIX):
$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
|