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