X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=examples%2FMakefile.am;h=13302d9b9270416c99dad3a947181b71bcfadefa;hb=71322ebf4ee7dfb53db344aaedd70518a3c7a552;hp=66a32d7b6a963bd607f604085b044de12b1e65c3;hpb=b6233d1fff5d9a6bbc61e7123a57bdd7d8cbc792;p=libguestfs.git diff --git a/examples/Makefile.am b/examples/Makefile.am index 66a32d7..13302d9 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,7 +1,13 @@ # libguestfs examples -noinst_PROGRAMS = df +noinst_PROGRAMS = hello to-xml -df_SOURCES = df.c -df_CFLAGS = -I$(top_builddir)/src -df_LDADD = $(top_builddir)/src/libguestfs.la +hello_SOURCES = hello.c +hello_CFLAGS = -I$(top_builddir)/src -Wall +hello_LDADD = $(top_builddir)/src/libguestfs.la + +to_xml_SOURCES = to-xml.c +to_xml_CFLAGS = -I$(top_builddir)/src -Wall +to_xml_LDADD = $(top_builddir)/src/libguestfs.la + +CLEANFILES = $(noinst_PROGRAMS)