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