2002-04-22 02:11:31 +00:00
|
|
|
-*-text-*-
|
|
|
|
|
|
|
|
Obtaining CVS Code
|
|
|
|
------------------
|
|
|
|
|
|
|
|
This seems redundant, since if you're reading this you most likely have
|
|
|
|
already performed this step; however, for completeness, you can obtain
|
|
|
|
the GNU make source code via anonymous CVS from the FSF's Savannah
|
|
|
|
project <http://savannah.gnu.org/projects/make/>:
|
|
|
|
|
|
|
|
$ cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/make co make
|
|
|
|
|
|
|
|
You might want to use the "-z3" option to get compression, and you most
|
|
|
|
certainly will want the -P option to avoid unneeded directories
|
|
|
|
cluttering up your source. Personally I add these (as well as -dP for
|
|
|
|
update) to my ~/.cvsrc file.
|
|
|
|
|
|
|
|
|
|
|
|
If you have an older version of CVS, you might have to login first.
|
|
|
|
There is no password; just hit the ENTER key if you are asked for one.
|
|
|
|
|
|
|
|
|
|
|
|
Building From CVS
|
|
|
|
-----------------
|
|
|
|
|
2004-03-04 13:42:51 +00:00
|
|
|
To build GNU make from CVS, you will need Autoconf, Automake, and
|
|
|
|
Gettext, and any tools that those utilities require (GNU m4, Perl,
|
|
|
|
etc.). See the configure.in file to find the minimum versions of each
|
|
|
|
of these tools. You will also need a copy of wget.
|
2002-04-22 02:11:31 +00:00
|
|
|
|
|
|
|
After checking out the code, you will need to perform these steps to get
|
2002-07-08 13:05:02 +00:00
|
|
|
to the point where you can run "make".
|
2002-04-22 02:11:31 +00:00
|
|
|
|
|
|
|
|
2003-03-25 00:15:25 +00:00
|
|
|
1) $ autoreconf -i -s
|
2002-04-22 02:11:31 +00:00
|
|
|
|
2003-03-25 00:15:25 +00:00
|
|
|
This rebuilds all the things that need rebuilding, installing
|
|
|
|
missing files as symbolic links.
|
2002-04-22 02:11:31 +00:00
|
|
|
|
2003-10-22 04:35:27 +00:00
|
|
|
You may get warnings here about missing files like README, etc.
|
|
|
|
Ignore them, they are harmless.
|
|
|
|
|
2002-04-22 02:11:31 +00:00
|
|
|
|
2003-03-25 00:15:25 +00:00
|
|
|
2) $ ./configure
|
2002-07-08 13:05:02 +00:00
|
|
|
|
|
|
|
Generate a Makefile
|
|
|
|
|
|
|
|
|
2003-03-25 00:15:25 +00:00
|
|
|
3) $ make update
|
2002-07-08 13:05:02 +00:00
|
|
|
|
|
|
|
Use wget to retrieve various other files that GNU make relies on,
|
|
|
|
but does not keep in its own source tree.
|
|
|
|
|
2003-05-02 01:44:59 +00:00
|
|
|
NB: You may need GNU make to correctly perform this step; if you use
|
|
|
|
a platform-local make you may get problems with missing files in doc/.
|
|
|
|
|
2002-07-08 13:05:02 +00:00
|
|
|
|
2002-04-22 02:11:31 +00:00
|
|
|
At this point you have successfully brought your CVS copy of the GNU
|
|
|
|
make source directory up to the point where it can be treated
|
|
|
|
more-or-less like the official package you would get from ftp.gnu.org.
|
|
|
|
That is, you can just run:
|
|
|
|
|
2002-07-08 13:05:02 +00:00
|
|
|
$ make && make check && make install
|
2002-04-22 02:11:31 +00:00
|
|
|
|
|
|
|
to build and install GNU make.
|
|
|
|
|
|
|
|
|
|
|
|
Creating a Package
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Once you have performed the above steps (including the configuration and
|
|
|
|
build) you can create a GNU make package. This is very simple, just
|
|
|
|
run:
|
|
|
|
|
|
|
|
$ make dist-gzip
|
|
|
|
|
|
|
|
and, if you like:
|
|
|
|
|
|
|
|
$ make dist-bzip2
|
|
|
|
|
2002-04-22 04:35:19 +00:00
|
|
|
Even better, you should run this:
|
|
|
|
|
|
|
|
$ make distcheck
|
|
|
|
|
|
|
|
Which will build both .gz and .bz2 package files, then unpack them into
|
|
|
|
a temporary location, try to build them, and repack them, verifying that
|
|
|
|
everything works, you get the same results, _and_ no extraneous files
|
|
|
|
are left over after the "distclean" rule--whew!! Now, _that_ is why
|
|
|
|
converting to Automake is worth the trouble! A big "huzzah!" to Tom
|
|
|
|
T. and the AutoToolers!
|
|
|
|
|
|
|
|
|
|
|
|
That's it, you're done!
|
|
|
|
|
|
|
|
|
|
|
|
Appendix A - For The Brave
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
For those of you who trust me implicitly, or are just brave (or
|
|
|
|
foolhardy), here is a canned sequence of commands to build a GNU make
|
|
|
|
distribution package from a virgin CVS source checkout (assuming all the
|
|
|
|
prerequisites are available of course).
|
|
|
|
|
2002-08-10 01:27:16 +00:00
|
|
|
This list is eminently suitable for a quick swipe o' the mouse and a
|
|
|
|
swift click o' mouse-2 into an xterm. Go for it!
|
2002-04-22 04:35:19 +00:00
|
|
|
|
2002-04-22 02:11:31 +00:00
|
|
|
|
2003-03-25 00:15:25 +00:00
|
|
|
autoreconf -i -s
|
2002-04-22 04:35:19 +00:00
|
|
|
./configure
|
2002-07-08 13:05:02 +00:00
|
|
|
make update
|
2002-04-22 04:35:19 +00:00
|
|
|
make
|
|
|
|
make check
|
|
|
|
make distcheck
|