Add to git.
[makeplus.git] / README.make+_for_bundles
1 README for make+
2 ----------------
3
4 This package uses 'make+' - the sane replacement for autoconf/automake.
5
6 Bundled along with this package you should find a makeplus-NNN/
7 subdirectory.  This contains the version of makeplus which was used
8 when this package was created. You now have three choices:
9
10 1. If you already have a recent version of make+ installed on your
11 computer, then just ignore this subdirectory. You should be able to
12 build this package just by doing:
13
14         ./configure
15         make+
16         make+ test
17         make+ install           # As root
18
19 2. If you do not have make+ installed or you want to use the bundled
20 version of make+ because it is newer, then you can do:
21
22         MAKEPLUS_HOME=`pwd`/makeplus-* ; export MAKEPLUS_HOME
23
24         oldpath=$PATH
25         PATH=$MAKEPLUS_HOME:$PATH ; export PATH
26
27         ./configure
28         make+
29         make+ test
30         make+ install           # As root
31
32         PATH=$oldpath
33
34 3. Or you can go to the website to download the latest version of
35 make+, install it and then proceed with the instructions in (1)
36 above. The website is:
37
38         http://www.annexia.org/freeware/makeplus/