aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-03 03:19:06 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-03 03:19:06 +0000
commit0a704e8ff62a7fdcd08f1fcc89ca66133da2db07 (patch)
tree6c6b2f7615f63ddf6f209c23ce02424b58346651 /docs
parenta19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b (diff)
downloadbusybox-w32-0a704e8ff62a7fdcd08f1fcc89ca66133da2db07.tar.gz
busybox-w32-0a704e8ff62a7fdcd08f1fcc89ca66133da2db07.tar.bz2
busybox-w32-0a704e8ff62a7fdcd08f1fcc89ca66133da2db07.zip
Remove BB_FEATURE_REMOUNT (small, and should always be present)
and fix documentation dependancy checks, so it is only built when it should be built. -Erik
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/Makefile b/docs/Makefile
deleted file mode 100644
index 472d29e84..000000000
--- a/docs/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
1# busybox/docs/Makefile - Create the documentation
2# ------------------------
3# Copyright (C) 2000 Erik Andersen <andersee@debian.org> GPL
4
5all: clean doc
6
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
15 @rm -f pod2html*
16
17clean:
18 @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html*
19
20distclean: clean
21