Parent Directory
|
Revision Log
Applied Bob and Daniel's patches to convert the build system to automake. Added the maintain directory, containing files that are used for maintenance, but are not distributed. This is an intermediate step.
1 | #!/bin/sh |
2 | |
3 | set -ex |
4 | |
5 | rm -rf autom4te.cache |
6 | |
7 | aclocal --force |
8 | |
9 | libtoolize -c -f |
10 | |
11 | autoconf -f -W all,no-obsolete |
12 | |
13 | automake -a -c -f -W all |
14 | |
15 | autoheader -f -W all |
16 | |
17 | rm -rf autom4te.cache |
18 | |
19 | exit 0 |
20 | |
21 | # end autogen.sh |
ViewVC Help | |
Powered by ViewVC 1.1.5 |