summaryrefslogtreecommitdiffstats
path: root/examples/Makefile.am
blob: cafb7f999e76e5031abf1779a05a3611f3153eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# libguestfs examples

noinst_PROGRAMS = df hello

df_SOURCES = df.c
df_CFLAGS = -I$(top_builddir)/src -Wall
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

CLEANFILES = *~