From 9cf3bfa7c1bf3ad959c61711c9a5ac1969149300 Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Thu, 13 Apr 2000 18:49:43 +0000 Subject: More doc updates for BusyBox, with fixes to apps for bugs revealed while trying to write docs . :-) -Erik --- docs/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/Makefile (limited to 'docs/Makefile') diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..aebe8a8 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,22 @@ +# busybox/docs/Makefile - Create the documentation +# ------------------------ +# Copyright (C) 2000 Erik Andersen GPL + +all:: clean doc + +doc: + @echo + @echo BusyBox Documentation + @echo + pod2html busybox.pod > ../BusyBox.html + @rm pod2html-* + pod2man --center=BusyBox --release="version $(VERSION)" busybox.pod > ../BusyBox.1 + pod2text busybox.pod > ../BusyBox.txt + +clean:: + @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html* + +distclean: clean + +.PHONY: all clean distclean doc + -- cgit v1.1