blob: 9931325bf73fb0e10753ee2347104f45846ff9ed (
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
|
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 = \
XChangeProperty/XChangeProperty \
XConvertSelection/XConvertSelection \
XDeleteProperty/XDeleteProperty \
XGetAtomName/XGetAtomName \
XGetGeometry/XGetGeometry \
XGetSelectionOwner/XGetSelectionOwner \
XGetWindowAttributes/XGetWindowAttributes \
XGetWindowProperty/XGetWindowProperty \
XInternAtom/XInternAtom \
XListProperties/XListProperties \
XQueryPointer/XQueryPointer \
XQueryTree/XQueryTree \
XRotateWindowProperties/XRotateWindowProperties \
XSetSelectionOwner/XSetSelectionOwner \
XTranslateCoordinates/XTranslateCoordinates
|