X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=src%2FMakefile.am;h=c6006d2b3fbffb6ca271f678542a60787bbd0523;hp=1906378d2b9b8642952b295df22284bdce2886de;hb=bf2b08560f649c22152e4138531ad0b46b4ad1b3;hpb=98515732084c6856c2e22364b2ae64113c2c37c6 diff --git a/src/Makefile.am b/src/Makefile.am index 1906378..c6006d2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -17,8 +17,6 @@ EXTRA_DIST = \ guestfs_protocol.x \ - guestfs_protocol.c \ - guestfs_protocol.h \ MAX_PROC_NR \ stamp-generator \ generator.ml @@ -52,6 +50,8 @@ BUILT_SOURCES = \ $(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. @@ -109,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