X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2FMakefile.am;h=20b445c32c810f36b32138d0af118a516082374d;hb=b4d2a01828e5de85e5eee3631f7fe3925a0312ca;hp=a0066dbfb769f7ca6be75920e8e123d35842cf78;hpb=88f69eb03160a62d38a361a5ad68c6ba1e767a20;p=libguestfs.git diff --git a/src/Makefile.am b/src/Makefile.am index a0066db..20b445c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,7 +15,38 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# NB. guestfs-actions.c is #include'd into guestfs.c, so it should not +# be listed as a source file. +EXTRA_DIST = guestfs-actions.c + +EXTRA_DIST += guestfs_protocol.x \ + guestfs_protocol.c \ + guestfs_protocol.h + +include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h + lib_LTLIBRARIES = libguestfs.la -libguestfs_la_SOURCES = guestfs.c guestfs.h -libguestfs_la_CFLAGS = -Wall -Werror \ No newline at end of file +libguestfs_la_LDFLAGS = -version-info 0:0:0 +libguestfs_la_SOURCES = \ + guestfs.c \ + guestfs.h \ + guestfs_protocol.c \ + guestfs_protocol.h \ + guestfs-actions.h + +libguestfs_la_CFLAGS = -Wall -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' + +if HAVE_RPCGEN +guestfs_protocol.c: guestfs_protocol.x + rm -f $@-t + $(RPCGEN) -c -o $@-t $< + mv $@-t $@ + +guestfs_protocol.h: guestfs_protocol.x + rm -f $@-t + $(RPCGEN) -h -o $@-t $< + mv $@-t $@ +endif + +CLEANFILES = *~