blob: b0168c6a8d420a9c49538fdc2bdab293d309a2d6 (
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
|
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 = \
ButtonPress/ButtonPress \
ButtonRelease/ButtonRelease \
ClientMessage/ClientMessage \
ColormapNotify/ColormapNotify \
ConfigureNotify/ConfigureNotify \
ConfigureRequest/ConfigureRequest \
CirculateNotify/CirculateNotify \
CirculateRequest/CirculateRequest \
CreateNotify/CreateNotify \
DestroyNotify/DestroyNotify \
EnterNotify/EnterNotify \
Expose/Expose \
FocusIn/FocusIn \
FocusOut/FocusOut \
GraphicsExpose/GraphicsExpose \
GravityNotify/GravityNotify \
KeymapNotify/KeymapNotify \
KeyPress/KeyPress \
KeyRelease/KeyRelease \
LeaveNotify/LeaveNotify \
MapNotify/MapNotify \
MappingNotify/MappingNotify \
MapRequest/MapRequest \
MotionNotify/MotionNotify \
NoExpose/NoExpose \
PropertyNotify/PropertyNotify \
ReparentNotify/ReparentNotify \
ResizeRequest/ResizeRequest \
SelectionClear/SelectionClear \
SelectionNotify/SelectionNotify \
SelectionRequest/SelectionRequest \
UnmapNotify/UnmapNotify \
VisibilityNotify/VisibilityNotify
|