aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-07-03 15:44:49 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-07-03 15:47:13 +0200
commit5520616c9d5a94f5e43e363b10b10a09dde4865c (patch)
tree140fe46b81153ef0a96a2488bf89b6560db18e43 /src
parent85b380fcb5ac42d74bede9baa9b94c31b375208e (diff)
downloadexternal_libqmi-5520616c9d5a94f5e43e363b10b10a09dde4865c.zip
external_libqmi-5520616c9d5a94f5e43e363b10b10a09dde4865c.tar.gz
external_libqmi-5520616c9d5a94f5e43e363b10b10a09dde4865c.tar.bz2
build: setup autotools
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am19
-rw-r--r--src/libqmi-glib.h27
2 files changed, 46 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..9bb46ad
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,19 @@
+
+lib_LTLIBRARIES = libqmi-glib.la
+
+libqmi_glib_la_CPPFLAGS = \
+ $(LIBQMI_GLIB_CFLAGS) \
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ -I$(top_srcdir)/src \
+ -I$(top_builddir)/src
+
+libqmi_glib_la_SOURCES = \
+ libqmi-glib.h
+
+libqmi_glib_la_LIBADD = \
+ $(LIBQMI_GLIB_LIBS)
+
+includedir = @includedir@/libqmi-glib
+include_HEADERS = \
+ libqmi-glib.h
diff --git a/src/libqmi-glib.h b/src/libqmi-glib.h
new file mode 100644
index 0000000..9b938a7
--- /dev/null
+++ b/src/libqmi-glib.h
@@ -0,0 +1,27 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * libqmi-glib -- GLib/GIO based library to control QMI devices
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301 USA.
+ *
+ * Copyright (C) 2012 Aleksander Morgado <aleksander@lanedo.com>
+ */
+
+#ifndef _LIBQMI_GLIB_H_
+#define _LIBQMI_GLIB_H_
+
+
+#endif /* _LIBQMI_GLIB_H_ */