blob: b8caa74d6967e46f7c12fb304707bfcf1e3e7e8e (
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
|
include ../common.mk
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS = -I$(top_srcdir)/include \
-I$(top_srcdir)/src/tet3/inc \
-I$(top_srcdir)/xts5/include \
$(XTS_CFLAGS)
LDADD = $(top_builddir)/src/tet3/tcm/libtcmmain.la \
$(top_builddir)/xts5/src/xim/libximtest.a \
$(top_builddir)/xts5/src/lib/libxtest.a \
$(top_builddir)/xts5/fonts/libfont.a \
$(top_builddir)/src/tet3/apilib/libapi.la \
$(XTS_LIBS)
testprogdir = $(libexecdir)/$(subdir)
nobase_testprog_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
|