diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-03 03:19:06 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-03 03:19:06 +0000 |
commit | 0a704e8ff62a7fdcd08f1fcc89ca66133da2db07 (patch) | |
tree | 6c6b2f7615f63ddf6f209c23ce02424b58346651 /docs/Makefile | |
parent | a19bc64653aab46f6335ed6aa7d7d70ff7b5fb0b (diff) | |
download | busybox-0a704e8ff62a7fdcd08f1fcc89ca66133da2db07.tar.gz |
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/Makefile')
-rw-r--r-- | docs/Makefile | 21 |
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 @@ -# busybox/docs/Makefile - Create the documentation -# ------------------------ -# Copyright (C) 2000 Erik Andersen <andersee@debian.org> 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 - @rm -f pod2html* - -clean: - @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html* - -distclean: clean - |