X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2FMakefile.am;fp=examples%2FMakefile.am;h=dee08498f02e79d10d16fccdbeaa6b5f6a4e4994;hp=7f7d8f725859e73c3249d73d449f381389843c8e;hb=b41e73008a939ef493d2bfb82c9bd07b0f74736a;hpb=d5eb5216aae0cb83fae686f490d1c3c37c2c074e diff --git a/examples/Makefile.am b/examples/Makefile.am index 7f7d8f7..dee0849 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,5 +1,5 @@ # libguestfs C examples -# Copyright (C) 2010 Red Hat Inc. +# Copyright (C) 2010-2011 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,12 +24,18 @@ CLEANFILES = stamp-guestfs-examples.pod noinst_PROGRAMS = create_disk inspect_vm create_disk_SOURCES = create_disk.c -create_disk_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -Wall -create_disk_LDADD = $(top_builddir)/src/libguestfs.la +create_disk_CFLAGS = \ + -I$(top_srcdir)/src -I$(top_builddir)/src \ + $(WARN_CFLAGS) $(WERROR_CFLAGS) +create_disk_LDADD = \ + $(top_builddir)/src/libguestfs.la inspect_vm_SOURCES = inspect_vm.c -inspect_vm_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -Wall -inspect_vm_LDADD = $(top_builddir)/src/libguestfs.la +inspect_vm_CFLAGS = \ + -I$(top_srcdir)/src -I$(top_builddir)/src \ + $(WARN_CFLAGS) $(WERROR_CFLAGS) +inspect_vm_LDADD = \ + $(top_builddir)/src/libguestfs.la man_MANS = guestfs-examples.3 noinst_DATA = $(top_builddir)/html/guestfs-examples.3.html