mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
14 lines
326 B
Makefile
14 lines
326 B
Makefile
# libguestfs examples
|
|
|
|
noinst_PROGRAMS = hello to-xml
|
|
|
|
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)
|