diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-05-27 11:40:59 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-05-27 11:40:59 +0100 |
commit | 7682199cfca20a52664c8e52035a06345862f226 (patch) | |
tree | 3070e0016d6cc735db7f2e734f4664b2cb9a30f2 /Makefile.am | |
parent | 213988115a8fd25266050228ac5184264f56baf8 (diff) | |
download | libguestfs-7682199cfca20a52664c8e52035a06345862f226.tar.gz libguestfs-7682199cfca20a52664c8e52035a06345862f226.tar.xz libguestfs-7682199cfca20a52664c8e52035a06345862f226.zip |
README, TODO and HACKING files are now shown on the website.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index efde0007..e9e02bfa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -182,11 +182,18 @@ html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcar sh make-recipes.sh recipes/*.sh > $@-t mv $@-t $@ -website: html/guestfs.3.html html/guestfish.1.html \ +HTMLFILES = html/guestfs.3.html html/guestfish.1.html \ html/virt-inspector.1.html \ - html/recipes.html - cp $^ html/pod.css html/recipes.css \ - $(HOME)/d/redhat/et-website/libguestfs/ + html/recipes.html \ + html/pod.css html/recipes.css + +TEXTFILES = README TODO HACKING + +WEBSITEDIR = $(HOME)/d/redhat/et-website/libguestfs + +website: $(HTMLFILES) $(TEXTFILES) + cp $(HTMLFILES) $(WEBSITEDIR) + for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done # Generate the ChangeLog automatically from the gitlog. |