diff options
Diffstat (limited to 'words3')
-rw-r--r-- | words3 | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -1,12 +1,17 @@ | |||
1 | 1 | ||
2 | If you got this far and the "cmp"s didn't find anything amiss, looks | 2 | If you got this far and the "cmp"s didn't complain, it looks |
3 | like you're in business. You should install bzip2, bunzip2 and bzcat: | 3 | like you're in business. |
4 | 4 | ||
5 | Copy bzip2 and bzip2recover to a public place, maybe /usr/bin. | 5 | To install in /usr/bin, /usr/lib, /usr/man and /usr/include, type |
6 | In that public place, make bunzip2 and bzcat be | 6 | make install |
7 | symbolic links to the bzip2 you just copied there. | 7 | To install somewhere else, eg, /xxx/yyy/{bin,lib,man,include}, type |
8 | Put the manual page, bzip2.1, somewhere appropriate; | 8 | make install PREFIX=/xxx/yyy |
9 | perhaps in /usr/man/man1. | 9 | If you are (justifiably) paranoid and want to see what 'make install' |
10 | is going to do, you can first do | ||
11 | make -n install or | ||
12 | make -n install PREFIX=/xxx/yyy respectively. | ||
13 | The -n instructs make to show the commands it would execute, but | ||
14 | not actually execute them. | ||
10 | 15 | ||
11 | Instructions for use are in the preformatted manual page, in the file | 16 | Instructions for use are in the preformatted manual page, in the file |
12 | bzip2.txt. For more detailed documentation, read the full manual. | 17 | bzip2.txt. For more detailed documentation, read the full manual. |
@@ -16,5 +21,3 @@ It is available in Postscript form (manual.ps) and HTML form | |||
16 | You can also do "bzip2 --help" to see some helpful information. | 21 | You can also do "bzip2 --help" to see some helpful information. |
17 | "bzip2 -L" displays the software license. | 22 | "bzip2 -L" displays the software license. |
18 | 23 | ||
19 | Happy compressing. -- JRS, 30 August 1998. | ||
20 | |||