Signed-off-by: Jose Ricardo Ziviani <joserz(a)linux.vnet.ibm.com>
---
configure.ac | 2 ++
ui/Makefile.am | 2 +-
ui/serial/Makefile.am | 23 +++++++++++++++++++++++
ui/serial/images/Makefile.am | 21 +++++++++++++++++++++
4 files changed, 47 insertions(+), 1 deletion(-)
create mode 100644 ui/serial/Makefile.am
create mode 100644 ui/serial/images/Makefile.am
diff --git a/configure.ac b/configure.ac
index 57737a9..26a9ac0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -115,6 +115,8 @@ AC_CONFIG_FILES([
ui/pages/help/ru_RU/Makefile
ui/pages/help/zh_CN/Makefile
ui/pages/help/zh_TW/Makefile
+ ui/serial/Makefile
+ ui/serial/images/Makefile
contrib/Makefile
contrib/DEBIAN/Makefile
contrib/DEBIAN/control
diff --git a/ui/Makefile.am b/ui/Makefile.am
index 21fe703..910adb1 100644
--- a/ui/Makefile.am
+++ b/ui/Makefile.am
@@ -15,6 +15,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-SUBDIRS = config css images js pages spice-html5
+SUBDIRS = config css images js pages spice-html5 serial
uidir = $(datadir)/wok/plugins/kimchi/ui
diff --git a/ui/serial/Makefile.am b/ui/serial/Makefile.am
new file mode 100644
index 0000000..45d0421
--- /dev/null
+++ b/ui/serial/Makefile.am
@@ -0,0 +1,23 @@
+# Kimchi
+#
+# Copyright IBM Corp, 2016
+#
+# 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.1 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
+
+SUBDIRS = images
+
+serialdir = $(datadir)/wok/plugins/kimchi/ui/serial
+
+dist_serial_DATA = serial.html term.js
diff --git a/ui/serial/images/Makefile.am b/ui/serial/images/Makefile.am
new file mode 100644
index 0000000..02afd78
--- /dev/null
+++ b/ui/serial/images/Makefile.am
@@ -0,0 +1,21 @@
+# Kimchi
+#
+# Copyright IBM Corp, 2013-2016
+#
+# 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.1 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
+
+serial_imagesdir = $(datadir)/wok/plugins/kimchi/ui/serial/images
+
+dist_serial_images_DATA = favicon.ico
--
1.9.1