blob: 472d29e840fef956d22cd120b1e427f6ed53a3b0 [file] [log] [blame]
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001# busybox/docs/Makefile - Create the documentation
2# ------------------------
3# Copyright (C) 2000 Erik Andersen <andersee@debian.org> GPL
4
Erik Andersena6c75222000-04-18 00:00:52 +00005all: clean doc
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00006
7doc:
8 @echo
9 @echo BusyBox Documentation
10 @echo
11 pod2html busybox.pod > ../BusyBox.html
12 @rm pod2html-*
13 pod2man --center=BusyBox --release="version $(VERSION)" busybox.pod > ../BusyBox.1
14 pod2text busybox.pod > ../BusyBox.txt
Erik Andersen95c1c1e2000-04-14 21:45:29 +000015 @rm -f pod2html*
Erik Andersen9cf3bfa2000-04-13 18:49:43 +000016
Erik Andersena6c75222000-04-18 00:00:52 +000017clean:
Erik Andersen9cf3bfa2000-04-13 18:49:43 +000018 @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html*
19
20distclean: clean
21