Empty import of libkernelctl
authorDavid Goulet <david.goulet@polymtl.ca>
Tue, 3 May 2011 19:54:23 +0000 (15:54 -0400)
committerDavid Goulet <david.goulet@polymtl.ca>
Tue, 3 May 2011 19:54:23 +0000 (15:54 -0400)
Add directory structure and modify tree structure in
order to compile this internal library.

Signed-off-by: David Goulet <david.goulet@polymtl.ca>
Makefile.am
configure.ac
libkernelctl/Makefile.am [new file with mode: 0644]
libkernelctl/libkernelctl.c [new file with mode: 0644]
libkernelctl/libkernelctl.h [new file with mode: 0644]

index e53d9079ee947f196b647f8488debf4475123320..dce10f8363f39f34f49a14445e1b83d646e976ea 100644 (file)
@@ -1,3 +1,8 @@
 ACLOCAL_AMFLAGS = -I config
 
-SUBDIRS = liblttsessiondcomm liblttngctl lttng ltt-sessiond tests
+SUBDIRS = liblttsessiondcomm \
+                 libkernelctl \
+                 liblttngctl \
+                 lttng \
+                 ltt-sessiond \
+                 tests
index 96f1f1bd7b76eb1a9fc94ce8b2c0878cb6fb1fdc..43b2f3f73bee68ff29c6c69b65eaef883db525fd 100644 (file)
@@ -46,6 +46,7 @@ AC_PROG_LIBTOOL
 AC_CONFIG_FILES([
        Makefile
        include/Makefile
+       libkernelctl/Makefile
        liblttngctl/Makefile
        liblttsessiondcomm/Makefile
        ltt-sessiond/Makefile
diff --git a/libkernelctl/Makefile.am b/libkernelctl/Makefile.am
new file mode 100644 (file)
index 0000000..474eb29
--- /dev/null
@@ -0,0 +1,5 @@
+AM_CPPFLAGS = -I$(top_srcdir)/include
+
+lib_LTLIBRARIES = libkernelctl.la
+
+libkernelctl_la_SOURCES = libkernelctl.c
diff --git a/libkernelctl/libkernelctl.c b/libkernelctl/libkernelctl.c
new file mode 100644 (file)
index 0000000..c29d4ae
--- /dev/null
@@ -0,0 +1,17 @@
+/*
+ * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
diff --git a/libkernelctl/libkernelctl.h b/libkernelctl/libkernelctl.h
new file mode 100644 (file)
index 0000000..570388c
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+#ifndef _LTT_LIBKERNELCTL_H
+#define _LTT_LIBKERNELCTL_H
+
+#endif /* _LTT_LIBKERNELCTL_H */
This page took 0.030209 seconds and 5 git commands to generate.