X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FMakefile.am;h=292e2eccfc9b5c1c2b453e514441b0741283a853;hb=456446a86909dd05a5162aca4d676f680b47abc4;hp=06d4522ce8f85be76da09509a8cdb64b3fb48f03;hpb=63d28e74b3a2c4e6f3e31fc1f8e1219a1a943404;p=libguestfs.git diff --git a/src/Makefile.am b/src/Makefile.am index 06d4522..292e2ec 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,17 +15,43 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -EXTRA_DIST = guestfs_protocol.x \ +EXTRA_DIST = \ + guestfs_protocol.x \ guestfs_protocol.c \ guestfs_protocol.h \ - MAX_PROC_NR + MAX_PROC_NR \ + stamp-generator \ + generator.ml -EXTRA_DIST += generator.ml +# Rerun the generator if it has changed. +# Git removes empty directories, so in cases where the +# generator is creating the sole file in a directory, we +# have to create the directory first. +noinst_DATA = stamp-generator + +stamp-generator: generator.ml + mkdir -p $(top_builddir)/perl/lib/Sys + mkdir -p $(top_builddir)/ruby/ext/guestfs + mkdir -p $(top_builddir)/java/com/redhat/et/libguestfs + cd $(top_builddir) && ocaml -warn-error A ./src/$< + +guestfs_protocol.x: stamp-generator include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h lib_LTLIBRARIES = libguestfs.la +BUILT_SOURCES = \ + guestfs_protocol.x \ + guestfs_protocol.c \ + guestfs_protocol.h \ + guestfs-structs.h \ + guestfs-actions.h \ + guestfs-actions.c \ + guestfs-bindtests.c + +$(BUILT_SOURCES): stamp-generator + # From the libtool info file, with comments: # # | 1. Start with version information of `0:0:0' for each libtool library.