blob: 746e57eaa7bd130b76835a01176166793625d700 (
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
|
#include <Server.tmpl>
SRCS = allowev.c \
chgkbd.c \
chgdctl.c \
chgfctl.c \
chgkmap.c \
chgprop.c \
chgptr.c \
closedev.c \
devbell.c \
exevents.c \
extinit.c \
getdctl.c \
getfctl.c \
getfocus.c \
getbmap.c \
getkmap.c \
getmmap.c \
getprop.c \
getselev.c \
getvers.c \
gtmotion.c \
grabdev.c \
grabdevb.c \
grabdevk.c \
listdev.c \
opendev.c \
queryst.c \
selectev.c \
sendexev.c \
setdval.c \
setfocus.c \
setmode.c \
setbmap.c \
setmmap.c \
stubs.c \
ungrdev.c \
ungrdevb.c \
ungrdevk.c
OBJS = allowev.o \
chgkbd.o \
chgdctl.o \
chgfctl.o \
chgkmap.o \
chgprop.o \
chgptr.o \
closedev.o \
devbell.o \
exevents.o \
extinit.o \
getdctl.o \
getfctl.o \
getfocus.o \
getbmap.o \
getkmap.o \
getmmap.o \
getprop.o \
getselev.o \
getvers.o \
gtmotion.o \
grabdev.o \
grabdevb.o \
grabdevk.o \
listdev.o \
opendev.o \
queryst.o \
selectev.o \
sendexev.o \
setdval.o \
setfocus.o \
setmode.o \
setbmap.o \
setmmap.o \
ungrdev.o \
ungrdevb.o \
ungrdevk.o
INCLUDES = -I../include -I$(EXTINCSRC) -I$(XINCLUDESRC) `pkg-config --cflags-only-I pixman-1`
LINTLIBS = ../dix/llib-ldix.ln ../os/llib-los.ln
#if defined(NXAgentServer) && NXAgentServer
NX_DEFINES = -DNXAGENT_SERVER
#endif
DEFINES = $(NX_DEFINES)
NormalLibraryTarget(xinput,$(OBJS))
NormalLibraryObjectRule()
LintLibraryTarget(xinput,$(SRCS))
NormalLintTarget($(SRCS))
DependTarget()
|