add lttctl
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 14 Jun 2005 18:54:23 +0000 (18:54 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 14 Jun 2005 18:54:23 +0000 (18:54 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@952 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/Makefile.am
ltt/branches/poly/configure.in
ltt/branches/poly/lttctl/Makefile.am [new file with mode: 0644]
ltt/branches/poly/lttctl/lttctl.c [new file with mode: 0644]

index a63475553f339797167e15da97ef1801fc2590c6..a9061e64ca84569b64a7b15ac2d8a45c802f4af5 100644 (file)
@@ -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 
 
 
index ab5dd1fd090ebb92f88c6e258445fd7deaa4a0fa..6fc1571dc65b36b71c8fd44635411e397d394f3a 100644 (file)
@@ -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 (file)
index 0000000..5fe870d
--- /dev/null
@@ -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 (file)
index 0000000..cb0c255
--- /dev/null
@@ -0,0 +1,13 @@
+/* lttctl
+ *
+ * Linux Trace Toolkit Control
+ *
+ * Small program that controls LTT through libltt.
+ *
+ * Copyright 2005 -
+ *     Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
+ */
+
+#include <ltt/libltt.h>
+
+
This page took 0.025064 seconds and 4 git commands to generate.