Add SONAME information
[infodrom/cgilib] / INSTALL
1 Installation Instructions
2 =========================
3
4 The version control system does not contain all files required to
5 compile this project.  This is intentional.
6
7 These files will be added before releasing a new version of the
8 package outside of the version control system.
9
10 Compiling from Source
11 ---------------------
12
13 To compile this package you'll have to execute the following two
14 commands:
15
16 ./configure
17 make
18
19 Compiling from CVS
20 ------------------
21
22 Before you can compile this project you'll have to install the
23 following packages:
24
25  . autoconf
26  . automake
27  . libtool
28
29 Once installed you'll have to execute the following commands:
30
31 aclocal
32 autoconf
33 libtoolize --force
34 automake --add-missing --foreign
35
36 Now ./configure is generated and needs to be executed.
37
38 Preparing a release
39 -------------------
40
41 After the final commit, edit configure.ac and adjust the package version.
42 Run the following commands:
43
44 aclocal
45 autoconf
46 libtoolize --force
47 automake --add-missing --foreign
48
49 Before building the final release tarball some files may be removed.
50
51 After a normal build run, execute:
52
53 make distclean
54 rm -rf autom4te.cache
55 rm -f aclocal.m4
56