diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-09-18 09:38:05 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-09-18 09:38:05 +0100 |
commit | 0003ea2c3dbaa7e22f4f616539136821d80694b8 (patch) | |
tree | 1a5bcededb436fb9f1a0e8e046599fdd0d5ae7f1 /Makefile.am | |
parent | 585fceb3350c17a3d6ed7f2daffd5e2b3e5fc3e1 (diff) | |
download | libguestfs-0003ea2c3dbaa7e22f4f616539136821d80694b8.tar.gz libguestfs-0003ea2c3dbaa7e22f4f616539136821d80694b8.tar.xz libguestfs-0003ea2c3dbaa7e22f4f616539136821d80694b8.zip |
generator: Generate guestfish-only commands.
The guestfish-only commands such as 'alloc' and 'edit' are
now generated from one place in the generator instead of being
spread around ad-hoc in the C code.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 2cf03b0d..5ab3b6d4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -114,10 +114,11 @@ html/guestfs.3.html: src/guestfs.pod \ --htmldir html \ --outfile $@ -html/guestfish.1.html: fish/guestfish.pod fish/guestfish-actions.pod +html/guestfish.1.html: fish/guestfish.pod fish/guestfish-actions.pod fish/guestfish-commands.pod mkdir -p html sed \ -e '/@ACTIONS@/rfish/guestfish-actions.pod' -e 's/@ACTIONS@//' \ + -e '/@FISH_COMMANDS@/rguestfish-commands.pod' -e 's/@FISH_COMMANDS@//' \ < $< | \ pod2html \ --css 'pod.css' \ |