blob: fd0531cb7e03e33440bc0ff02d23058451b3f849 (
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
|
include ../../common.mk
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS = $(XTS_LCFLAGS) $(XTS_CFLAGS)
LDADD = $(TCM) $(XTS_LLIBS) $(XTS_LIBS)
libexec_PROGRAMS = $(tprogs)
BUILT_SOURCES = $(tprogs:$(EXEEXT)=.c)
CLEANFILES = $(BUILT_SOURCES)
tprogs = \
XAddPixel/XAddPixel \
XClipBox/XClipBox \
XCreateBitmapFromData/XCreateBitmapFromData \
XCreateImage/XCreateImage \
XCreatePixmapFromBitmapData/XCreatePixmapFromBitmapData \
XCreateRegion/XCreateRegion \
XDeleteContext/XDeleteContext \
XDestroyImage/XDestroyImage \
XDestroyRegion/XDestroyRegion \
XEmptyRegion/XEmptyRegion \
XEqualRegion/XEqualRegion \
XFindContext/XFindContext \
XFetchBuffer/XFetchBuffer \
XFetchBytes/XFetchBytes \
XGetDefault/XGetDefault \
XGetPixel/XGetPixel \
XGetVisualInfo/XGetVisualInfo \
XIntersectRegion/XIntersectRegion \
IsCursorKey/IsCursorKey \
IsFunctionKey/IsFunctionKey \
IsKeypadKey/IsKeypadKey \
IsModifierKey/IsModifierKey \
IsMiscFunctionKey/IsMiscFunctionKey \
IsPFKey/IsPFKey \
XKeycodeToKeysym/XKeycodeToKeysym \
XKeysymToKeycode/XKeysymToKeycode \
XKeysymToString/XKeysymToString \
XLookupKeysym/XLookupKeysym \
XLookupString/XLookupString \
XMatchVisualInfo/XMatchVisualInfo \
XOffsetRegion/XOffsetRegion \
XPolygonRegion/XPolygonRegion \
XPointInRegion/XPointInRegion \
Xpermalloc/Xpermalloc \
XParseGeometry/XParseGeometry \
XPutPixel/XPutPixel \
XRebindKeysym/XRebindKeysym \
XRectInRegion/XRectInRegion \
XReadBitmapFile/XReadBitmapFile \
XRefreshKeyboardMapping/XRefreshKeyboardMapping \
XRotateBuffers/XRotateBuffers \
XSubImage/XSubImage \
XSubtractRegion/XSubtractRegion \
XShrinkRegion/XShrinkRegion \
XStoreBuffer/XStoreBuffer \
XStoreBytes/XStoreBytes \
XSetRegion/XSetRegion \
XStringToKeysym/XStringToKeysym \
XSaveContext/XSaveContext \
XUnionRectWithRegion/XUnionRectWithRegion \
XUnionRegion/XUnionRegion \
XUniqueContext/XUniqueContext \
XWMGeometry/XWMGeometry \
XWriteBitmapFile/XWriteBitmapFile \
XXorRegion/XXorRegion
# Auxiliary programs run from tests
libexec_PROGRAMS += \
XGetDefault/Test3 \
XGetDefault/Test4 \
XGetDefault/Test5
XGetDefault_Test3_LDADD = $(TCMCHILD) $(XTS_LLIBS) $(XTS_LIBS)
XGetDefault_Test4_LDADD = $(TCMCHILD) $(XTS_LLIBS) $(XTS_LIBS)
XGetDefault_Test5_LDADD = $(TCMCHILD) $(XTS_LLIBS) $(XTS_LIBS)
|