Added examples/hellolibvirt to the parent autoconf/automake files and created Makefile.am
---
Makefile.am | 2 +-
configure.in | 3 ++-
examples/hellolibvirt/Makefile.am | 5 +++++
3 files changed, 8 insertions(+), 2 deletions(-)
create mode 100644 examples/hellolibvirt/Makefile.am
diff --git a/Makefile.am b/Makefile.am
index d4e42f1..928a93c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4,7 +4,7 @@ LCOV = lcov
GENHTML = genhtml
SUBDIRS = gnulib/lib include src qemud proxy docs gnulib/tests \
- python tests po examples/domain-events/events-c
+ python tests po examples/domain-events/events-c examples/hellolibvirt
ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4
diff --git a/configure.in b/configure.in
index 493ea28..3db0976 100644
--- a/configure.in
+++ b/configure.in
@@ -1285,7 +1285,8 @@ AC_OUTPUT(Makefile src/Makefile include/Makefile docs/Makefile \
tests/xmconfigdata/Makefile \
tests/xencapsdata/Makefile \
tests/confdata/Makefile \
- examples/domain-events/events-c/Makefile)
+ examples/domain-events/events-c/Makefile \
+ examples/hellolibvirt/Makefile)
AC_MSG_NOTICE([])
AC_MSG_NOTICE([Configuration summary])
diff --git a/examples/hellolibvirt/Makefile.am b/examples/hellolibvirt/Makefile.am
new file mode 100644
index 0000000..6ef2cc8
--- /dev/null
+++ b/examples/hellolibvirt/Makefile.am
@@ -0,0 +1,5 @@
+INCLUDES = -I@top_srcdir@/include
+noinst_PROGRAMS = hellolibvirt
+hellolibvirt_CFLAGS = $(WARN_CFLAGS)
+hellolibvirt_SOURCES = hellolibvirt.c
+hellolibvirt_LDADD = @top_builddir(a)/src/libvirt.la
--
1.6.0.6