blob: c4ce3fdab29537d57c97ecb1cf09c0bad5dbbde4 (
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
|
include ../common.mk
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS = $(XP_LCFLAGS) $(XP_CFLAGS)
LDADD = $(TCM) $(XP_LLIBS) $(XP_LIBS)
testprogdir = $(libexecdir)/$(subdir)
nobase_testprog_PROGRAMS = $(tprogs)
BUILT_SOURCES = $(tprogs:$(EXEEXT)=.c)
CLEANFILES = $(BUILT_SOURCES)
tprogs = \
AllowDeviceEvents \
ChangeDeviceControl \
ChangeDeviceDontPropagateList \
ChangeFeedbackControl \
ChangeKeyboardDevice \
ChangePointerDevice \
ChangeDeviceKeyMapping \
CloseDevice \
DeviceBell \
GetDeviceModifierMapping \
GetFeedbackControl \
GetExtensionVersion \
GrabDevice \
GrabDeviceButton \
GrabDeviceKey \
GetDeviceButtonMapping \
GetDeviceControl \
GetDeviceFocus \
GetDeviceMotionEvents \
GetDeviceDontPropagateList \
GetDeviceKeyMapping \
GetSelectedExtensionEvents \
ListInputDevices \
Miscellaneous \
OpenDevice \
QueryDeviceState \
SetDeviceValuators \
SetDeviceButtonMapping \
SetDeviceFocus \
SetDeviceModifierMapping \
SetDeviceMode \
SelectExtensionEvent \
SendExtensionEvent \
UngrabDevice \
UngrabDeviceButton \
UngrabDeviceKey
|