blob: 6a5c93fd06e767a2d1efcdbdd3a12924bcca8c70 (
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 \
XConvertSelection \
XDeleteProperty \
XGetAtomName \
XGetGeometry \
XGetSelectionOwner \
XGetWindowAttributes \
XGetWindowProperty \
XInternAtom \
XListProperties \
XQueryPointer \
XQueryTree \
XRotateWindowProperties \
XSetSelectionOwner \
XTranslateCoordinates
|