blob: 04bbe5e45f5e0e9991a54be100cfd499559ffab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# libguestfs examples
include $(top_srcdir)/subdir-rules.mk
noinst_PROGRAMS = hello to-xml
hello_SOURCES = hello.c
hello_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -Wall
hello_LDADD = $(top_builddir)/src/libguestfs.la
to_xml_SOURCES = to-xml.c
to_xml_CPPFLAGS = \
-I$(top_srcdir)/gnulib/lib \
-I$(top_srcdir)/src -I$(top_builddir)/src -Wall
to_xml_LDADD = $(top_builddir)/src/libguestfs.la
CLEANFILES = $(noinst_PROGRAMS)
|