X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.am;h=52823bba16a978f6710150f2d76a2bd70664e22f;hb=f6c8665a72c3ecadf0b24029f7c6840aafd33c81;hp=bfca6a1ed8c3020e5179edfc5f147fa8cc3b3c8b;hpb=4cf4f2b66f850bb39c5bf29d3cd12ada9114d67e;p=libguestfs.git diff --git a/Makefile.am b/Makefile.am index bfca6a1..52823bb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # libguestfs -# Copyright (C) 2009-2010 Red Hat Inc. +# Copyright (C) 2009-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 @@ -74,12 +74,14 @@ SUBDIRS += fuse endif # po-docs must come after tools, inspector. +if HAVE_PO4A SUBDIRS += po-docs +endif EXTRA_DIST = \ $(generator_built) \ html/pod.css \ - BUGS HACKING RELEASE-NOTES TODO \ + BUGS HACKING RELEASE-NOTES ROADMAP TODO \ libguestfs.pc libguestfs.pc.in \ recipes/LICENSE \ recipes/README \ @@ -92,7 +94,10 @@ EXTRA_DIST = \ bindtests \ .gitignore \ m4/.gitignore \ - libtool-kill-dependency_libs.sh + libtool-kill-dependency_libs.sh \ + autogen.sh \ + bugs-in-changelog.sh \ + update-bugs.sh # Recipes web page. html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh @@ -125,7 +130,7 @@ HTMLFILES = \ html/recipes.html \ html/pod.css html/recipes.css -TEXTFILES = BUGS HACKING README RELEASE-NOTES TODO +TEXTFILES = BUGS README RELEASE-NOTES ROADMAP TODO WEBSITEDIR = $(HOME)/d/redhat/websites/libguestfs @@ -182,9 +187,6 @@ CLEANFILES = \ pod2htm?.tmp \ html/*.html -clean-local: - rm -rf initramfs - # If you don't want to run all of the tests ('make check') then this # will just run libguestfs-test-tool for a quick check. Note this # is NOT a substitute for proper testing! @@ -192,14 +194,7 @@ clean-local: quickcheck: test-tool/run-test-tool-locally -# Mostly static binary distribution. -# -# Some binaries are relinked partially statically. You can make these -# binaries "more static" by making sure that as many foo-static -# packages are installed as possible. -# -# We remove the supermin appliance and adjust some directories to make -# them non-Fedora-specific. +# Make binary distribution. BINTMPDIR = /tmp/libguestfs-bin bindist: @@ -207,26 +202,6 @@ bindist: mkdir $(BINTMPDIR) $(MAKE) $(MAKE) DESTDIR=$(BINTMPDIR) install - rm -r $(BINTMPDIR)$(libdir)/guestfs/supermin.d - rm $(BINTMPDIR)$(libdir)/guestfs/kmod.whitelist - mv $(BINTMPDIR)$(prefix)/lib64/* $(BINTMPDIR)$(libdir) - mv $(BINTMPDIR)/usr/lib64/* $(BINTMPDIR)$(libdir) -find $(BINTMPDIR) -type d -exec rmdir --ignore-fail-on-non-empty {} \; - $(MAKE) -C fish guestfish.static - cp fish/guestfish.static $(BINTMPDIR)$(bindir)/guestfish - $(MAKE) -C fuse guestmount.static - cp fuse/guestmount.static $(BINTMPDIR)$(bindir)/guestmount - $(MAKE) -C test-tool libguestfs-test-tool.static - cp test-tool/libguestfs-test-tool.static $(BINTMPDIR)$(bindir)/libguestfs-test-tool - $(MAKE) -C cat virt-cat.static virt-filesystems.static virt-ls.static - cp cat/virt-cat.static $(BINTMPDIR)$(bindir)/virt-cat - cp cat/virt-filesystems.static $(BINTMPDIR)$(bindir)/virt-filesystems - cp cat/virt-ls.static $(BINTMPDIR)$(bindir)/virt-ls - $(MAKE) -C df virt-df.static - cp df/virt-df.static $(BINTMPDIR)$(bindir)/virt-df - $(MAKE) -C inspector virt-inspector.static - cp inspector/virt-inspector.static $(BINTMPDIR)$(bindir)/virt-inspector - $(MAKE) -C rescue virt-rescue.static - cp rescue/virt-rescue.static $(BINTMPDIR)$(bindir)/virt-rescue (cd $(BINTMPDIR) && tar cf - .) | \ - gzip -c -9 > libguestfs-$(VERSION)-$(host_cpu).tar.gz + gzip -c -9 > libguestfs-$(VERSION)-$(DISTRO)-$(host_cpu).tar.gz