diff options
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 6 |
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 | ||
5 | all:: clean doc | 5 | all: clean doc |
6 | 6 | ||
7 | doc: | 7 | doc: |
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 | ||
17 | clean:: | 17 | clean: |
18 | @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html* | 18 | @rm -f ../BusyBox.html ../BusyBox.1 ../BusyBox.txt pod2html* |
19 | 19 | ||
20 | distclean: clean | 20 | distclean: clean |
21 | 21 | ||
22 | .PHONY: all clean distclean doc | ||
23 | |||