1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Updated.

This commit is contained in:
hniksic 2000-12-10 12:11:59 -08:00
parent f2b87a8135
commit bf69f45520

View File

@ -7,19 +7,26 @@ the build process, except for `configure', which is needed to start
the build in the first place. the build in the first place.
To build Wget from the CVS sources, all you need aside from the normal To build Wget from the CVS sources, all you need aside from the normal
development tools (make, cc) is Autoconf, which you can get from C development tools (make, cc) is Autoconf, which you can get from
<http://www.gnu.org/software/autoconf/autoconf.html>. <http://www.gnu.org/software/autoconf/autoconf.html>. Wget does not
use Automake or Libtool, so you needn't worry about those.
For your convenience, the file Makefile.cvs will do the necessary For your convenience, Makefile.cvs is a make file containing the
preparations, i.e. call autoconf. Invoke it with `make -f necessary preparations, which currently amount to calling Autoconf.
Makefile.cvs'. All in all, the checkout and build process will Invoke it with `make -f Makefile.cvs', and after that you're ready to
usually look like this: build Wget in the normal fashion, e.g. with `./configure' followed by
`make'.
$ cvs -d ... checkout wget The simplest example of downloading and building Wget from CVS can
... CVS output ... look like this:
$ cd wget
$ make -f Makefile.cvs cvs -d :pserver:... checkout wget
... autoconf creates configure ... cd wget
$ ./configure make -f Makefile.cvs
... Makefiles and config.h get built ... ./configure
$ make make
The instructions that explain how to check out Wget from CVS in the
first place are available at <http://sunsite.dk/wget/> under
"Development".