diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-06-02 03:21:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-06-02 03:21:32 +0000 |
commit | 77bd2db32527a81dd777f6835fddacc801855cbc (patch) | |
tree | da6b712553ef9b54dcea1cf982c3984fc1bba205 | |
parent | 1624813459584b4044ed88b572eefaff9df96a3c (diff) | |
download | busybox-w32-77bd2db32527a81dd777f6835fddacc801855cbc.tar.gz busybox-w32-77bd2db32527a81dd777f6835fddacc801855cbc.tar.bz2 busybox-w32-77bd2db32527a81dd777f6835fddacc801855cbc.zip |
Acknowledge contributions of Pavel Roskin, and fix doc building
so the html goes into the website directory.
-Erik
-rw-r--r-- | AUTHORS | 19 | ||||
-rw-r--r-- | Makefile | 6 |
2 files changed, 16 insertions, 9 deletions
@@ -12,9 +12,6 @@ Erik Andersen <andersen@lineo.com>, <andersee@debian.org> | |||
12 | Tons of new stuff, major rewrite of most of the | 12 | Tons of new stuff, major rewrite of most of the |
13 | core apps, tons of new apps as noted in header files. | 13 | core apps, tons of new apps as noted in header files. |
14 | 14 | ||
15 | Bruce Perens <bruce@pixar.com> | ||
16 | Original author of BusyBox. His code is still in many apps. | ||
17 | |||
18 | John Beppu <beppu@lineo.com> | 15 | John Beppu <beppu@lineo.com> |
19 | du, head, nslookup, sort, tee, uniq | 16 | du, head, nslookup, sort, tee, uniq |
20 | 17 | ||
@@ -28,9 +25,21 @@ Dave Cinege <dcinege@psychosis.com> | |||
28 | more(v2), makedevs, dutmp, modularization, auto links file, | 25 | more(v2), makedevs, dutmp, modularization, auto links file, |
29 | various fixes, Linux Router Project maintenance | 26 | various fixes, Linux Router Project maintenance |
30 | 27 | ||
28 | Karl M. Hegbloom <karlheg@debian.org> | ||
29 | cp_mv.c, the test suite, various fixes to utility.c, &c. | ||
30 | |||
31 | Daniel Jacobowitz <dan@debian.org> | ||
32 | mktemp.c | ||
33 | |||
31 | John Lombardo <john@deltanet.com> | 34 | John Lombardo <john@deltanet.com> |
32 | dirname, tr | 35 | dirname, tr |
33 | 36 | ||
37 | Bruce Perens <bruce@pixar.com> | ||
38 | Original author of BusyBox. His code is still in many apps. | ||
39 | |||
40 | Pavel Roskin <pavel_roskin@geocities.com> | ||
41 | Lots of bugs fixes and patches. | ||
42 | |||
34 | Linus Torvalds <torvalds@transmeta.com> | 43 | Linus Torvalds <torvalds@transmeta.com> |
35 | mkswap, fsck.minix, mkfs.minix | 44 | mkswap, fsck.minix, mkfs.minix |
36 | 45 | ||
@@ -40,8 +49,4 @@ Charles P. Wright <cpwright@villagenet.com> | |||
40 | Enrique Zanardi <ezanardi@ull.es> | 49 | Enrique Zanardi <ezanardi@ull.es> |
41 | tarcat (since removed), loadkmap, various fixes, Debian maintenance | 50 | tarcat (since removed), loadkmap, various fixes, Debian maintenance |
42 | 51 | ||
43 | Karl M. Hegbloom <karlheg@debian.org> | ||
44 | cp_mv.c, the test suite, various fixes to utility.c, &c. | ||
45 | 52 | ||
46 | Daniel Jacobowitz <dan@debian.org> | ||
47 | mktemp.c | ||
@@ -101,7 +101,8 @@ docs/BusyBox.1: docs/busybox.pod | |||
101 | pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1 | 101 | pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1 |
102 | 102 | ||
103 | docs/BusyBox.html: docs/busybox.pod | 103 | docs/BusyBox.html: docs/busybox.pod |
104 | pod2html docs/busybox.pod > docs/BusyBox.html | 104 | pod2html docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html |
105 | ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html | ||
105 | - rm -f pod2html* | 106 | - rm -f pod2html* |
106 | 107 | ||
107 | clean: | 108 | clean: |
@@ -123,7 +124,8 @@ clean: | |||
123 | - rm -f busybox.links *~ *.o core | 124 | - rm -f busybox.links *~ *.o core |
124 | - rm -rf _install | 125 | - rm -rf _install |
125 | - cd tests && $(MAKE) clean | 126 | - cd tests && $(MAKE) clean |
126 | - rm -f BusyBox.html BusyBox.1 BusyBox.txt pod2html* | 127 | - rm -f docs/BusyBox.html docs/busybox.lineo.com/BusyBox.html \ |
128 | docs/BusyBox.1 docs/BusyBox.txt pod2html* | ||
127 | 129 | ||
128 | distclean: clean | 130 | distclean: clean |
129 | - rm -f busybox | 131 | - rm -f busybox |