diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-01 22:57:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-01 22:57:44 +0000 |
commit | 29be79c5f6113ba8ab609cb17651fb8decf17c90 (patch) | |
tree | 52d0dd3e4a73def44a5f27c056550ac3b9f56c07 /Makefile | |
parent | 4c45e0991a17827a5ba577535325442cdc77e73d (diff) | |
download | busybox-29be79c5f6113ba8ab609cb17651fb8decf17c90.tar.gz |
More doc handling updates
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -157,14 +157,13 @@ docs/BusyBox.txt: docs/busybox.pod @echo @echo BusyBox Documentation @echo - - mkdir -p docs - - (cd $(BB_SRC_DIR); pod2text docs/busybox.pod) > docs/BusyBox.txt + -mkdir -p docs + -pod2text $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.txt docs/BusyBox.1: docs/busybox.pod - mkdir -p docs - - (cd $(BB_SRC_DIR); pod2man --center=BusyBox \ - --release="version $(VERSION)" \ - docs/busybox.pod ) > docs/BusyBox.1 + - pod2man --center=BusyBox --release="version $(VERSION)" \ + $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.1 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html -@ rm -f docs/BusyBox.html @@ -172,8 +171,8 @@ docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod -@ mkdir -p docs/busybox.lineo.com - - (cd $(BB_SRC_DIR); pod2html --noindex docs/busybox.pod ) \ - > docs/busybox.lineo.com/BusyBox.html + - pod2html --noindex $(BB_SRC_DIR)/docs/busybox.pod > \ + docs/busybox.lineo.com/BusyBox.html -@ rm -f pod2html* |