Don't show empty CD devices (RHBZ#514505).
[libguestfs.git] / examples / Makefile.am
1 # libguestfs examples
2
3 noinst_PROGRAMS = hello to-xml
4
5 hello_SOURCES = hello.c
6 hello_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -Wall
7 hello_LDADD = $(top_builddir)/src/libguestfs.la
8
9 to_xml_SOURCES = to-xml.c
10 to_xml_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -Wall
11 to_xml_LDADD = $(top_builddir)/src/libguestfs.la
12
13 CLEANFILES = $(noinst_PROGRAMS)