From 2cdb6fcba2deb41e6e894cae0f46d9a58a8c9e85 Mon Sep 17 00:00:00 2001 From: compudj Date: Tue, 14 Jun 2005 18:54:23 +0000 Subject: [PATCH] add lttctl git-svn-id: http://ltt.polymtl.ca/svn@952 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/Makefile.am | 2 +- ltt/branches/poly/configure.in | 1 + ltt/branches/poly/lttctl/Makefile.am | 9 +++++++++ ltt/branches/poly/lttctl/lttctl.c | 13 +++++++++++++ 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 ltt/branches/poly/lttctl/Makefile.am create mode 100644 ltt/branches/poly/lttctl/lttctl.c diff --git a/ltt/branches/poly/Makefile.am b/ltt/branches/poly/Makefile.am index a6347555..a9061e64 100644 --- a/ltt/branches/poly/Makefile.am +++ b/ltt/branches/poly/Makefile.am @@ -1,6 +1,6 @@ # WARNING : ltt must come before lttv, so that the traceread library is # up to date -SUBDIRS = libltt ltt lttv lttd doc +SUBDIRS = libltt ltt lttctl lttv lttd doc diff --git a/ltt/branches/poly/configure.in b/ltt/branches/poly/configure.in index ab5dd1fd..6fc1571d 100644 --- a/ltt/branches/poly/configure.in +++ b/ltt/branches/poly/configure.in @@ -101,6 +101,7 @@ AC_SUBST(lttvwindowincludedir) AC_CONFIG_FILES([Makefile libltt/Makefile + lttctl/Makefile lttv/Makefile lttv/lttv/Makefile lttv/modules/Makefile diff --git a/ltt/branches/poly/lttctl/Makefile.am b/ltt/branches/poly/lttctl/Makefile.am new file mode 100644 index 00000000..5fe870d0 --- /dev/null +++ b/ltt/branches/poly/lttctl/Makefile.am @@ -0,0 +1,9 @@ +## Process this file with automake to produce Makefile.in + +bin_PROGRAMS = lttctl + +lttctl_SOURCES = \ + lttctl.c + +lttctl_LIBADD = libltt.la + diff --git a/ltt/branches/poly/lttctl/lttctl.c b/ltt/branches/poly/lttctl/lttctl.c new file mode 100644 index 00000000..cb0c2550 --- /dev/null +++ b/ltt/branches/poly/lttctl/lttctl.c @@ -0,0 +1,13 @@ +/* lttctl + * + * Linux Trace Toolkit Control + * + * Small program that controls LTT through libltt. + * + * Copyright 2005 - + * Mathieu Desnoyers + */ + +#include + + -- 2.34.1