mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
14 lines
287 B
Makefile
14 lines
287 B
Makefile
# 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 = *~
|