summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 10550f6df..472d29e84 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -2,7 +2,7 @@
2# ------------------------ 2# ------------------------
3# Copyright (C) 2000 Erik Andersen <andersee@debian.org> GPL 3# Copyright (C) 2000 Erik Andersen <andersee@debian.org> GPL
4 4
5all:: clean doc 5all: clean doc
6 6
7doc: 7doc:
8 @echo 8 @echo
@@ -14,10 +14,8 @@ doc:
14 pod2text busybox.pod > ../BusyBox.txt 14 pod2text busybox.pod > ../BusyBox.txt
15 @rm -f pod2html* 15 @rm -f pod2html*
16 16
17clean:: 17clean:
18 @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html* 18 @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html*
19 19
20distclean: clean 20distclean: clean
21 21
22.PHONY: all clean distclean doc
23