X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2FMakefile.am;h=c6006d2b3fbffb6ca271f678542a60787bbd0523;hb=d0fa2e6b7bccb00dbaae09a4d4c1a87b1dea0351;hp=6b1088cae417c8937e6b55804862719451763f59;hpb=d3270cfadd3416bd9961a2c6fb1cc131c43979da;p=libguestfs.git diff --git a/src/Makefile.am b/src/Makefile.am index 6b1088c..c6006d2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,16 +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 \ - guestfs_protocol.c \ - guestfs_protocol.h +EXTRA_DIST = \ + guestfs_protocol.x \ + MAX_PROC_NR \ + stamp-generator \ + 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 -EXTRA_DIST += generator.ml +stamp-generator: generator.ml + mkdir -p $(top_srcdir)/perl/lib/Sys + mkdir -p $(top_srcdir)/ruby/ext/guestfs + mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs + cd $(top_srcdir) && ocaml -warn-error A src/generator.ml + +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 + +CLEANFILES = guestfs_protocol.c guestfs_protocol.h + # From the libtool info file, with comments: # # | 1. Start with version information of `0:0:0' for each libtool library. @@ -82,9 +109,11 @@ libguestfs_la_CFLAGS = -Wall -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' if HAVE_RPCGEN guestfs_protocol.c: guestfs_protocol.x - rm -f $@-t + rm -f $@-t $@-t2 $(RPCGEN) -c -o $@-t $< - mv $@-t $@ + sed 's,\.\./\.\./src/,,' < $@-t > $@-t2 + rm $@-t + mv $@-t2 $@ guestfs_protocol.h: guestfs_protocol.x rm -f $@-t