diff options
author | Peter Harris <pharris@opentext.com> | 2012-07-25 15:05:33 -0400 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-26 10:29:39 +1000 |
commit | 0088b7e22af2c48937ab4154f710e4088163648c (patch) | |
tree | 45bc137e52adc3e0f9e1f8c4b299ae1d88210443 /xts5 | |
parent | da846d8603708c1570adf9a155bbfda73c0722da (diff) |
Build Xt10
Signed-off-by: Peter Harris <pharris@opentext.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'xts5')
-rw-r--r-- | xts5/Makefile.am | 3 | ||||
-rw-r--r-- | xts5/Xt10/.gitignore | 8 | ||||
-rw-r--r-- | xts5/Xt10/Makefile.am | 30 |
3 files changed, 40 insertions, 1 deletions
diff --git a/xts5/Makefile.am b/xts5/Makefile.am index dbe15b9f..dcf76c1e 100644 --- a/xts5/Makefile.am +++ b/xts5/Makefile.am @@ -2,7 +2,8 @@ include common.mk SUBDIRS = . fonts src scenarios Xproto Xopen Xlib3 Xlib4 Xlib5 Xlib6 \ Xlib7 Xlib8 Xlib9 Xlib10 Xlib11 Xlib12 Xlib13 Xlib14 Xlib15 \ - Xlib16 Xlib17 SHAPE XIproto XI Xt3 Xt4 Xt5 Xt6 Xt7 Xt8 Xt9 + Xlib16 Xlib17 SHAPE XIproto XI Xt3 Xt4 Xt5 Xt6 Xt7 Xt8 Xt9 \ + Xt10 noinst_HEADERS = include CLEANFILES = */*/tet_lock bin/xts-config bin/xts-run tetexec.cfg diff --git a/xts5/Xt10/.gitignore b/xts5/Xt10/.gitignore new file mode 100644 index 00000000..f0a65a9a --- /dev/null +++ b/xts5/Xt10/.gitignore @@ -0,0 +1,8 @@ +XtAddCallback +XtAddCallbacks +XtCallCallbackList +XtCallCallbacks +XtHasCallbacks +XtRemoveAllCallbacks +XtRemoveCallback +XtRemoveCallbacks diff --git a/xts5/Xt10/Makefile.am b/xts5/Xt10/Makefile.am new file mode 100644 index 00000000..a59af1f8 --- /dev/null +++ b/xts5/Xt10/Makefile.am @@ -0,0 +1,30 @@ +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) $(XAW_CFLAGS) +LDADD = $(top_builddir)/src/tet3/tcm/libtcmmain.la \ + $(top_builddir)/xts5/src/libxts5.la \ + $(top_builddir)/xts5/src/libXtTest/libXtTest.la \ + $(top_builddir)/xts5/src/libXtaw/libXtaw.la \ + $(top_builddir)/src/tet3/apilib/libapi.la \ + $(top_builddir)/src/tet3/apilib/libapi_s.la \ + $(XTS_LIBS) $(XAW_LIBS) + +testprogdir = $(libexecdir)/$(subdir) +nobase_testprog_PROGRAMS = $(tprogs) +BUILT_SOURCES = $(tprogs:=.c) +EXTRA_DIST = $(addsuffix .m,$(filter-out %_m,$(tprogs))) +DISTCLEANFILES = $(BUILT_SOURCES) + +tprogs = \ + XtAddCallback \ + XtAddCallbacks \ + XtCallCallbackList \ + XtCallCallbacks \ + XtHasCallbacks \ + XtRemoveAllCallbacks \ + XtRemoveCallback \ + XtRemoveCallbacks |