|
Revision 1158, 401 bytes
(checked in by whmoseley, 6 years ago)
|
Added support for automake and libtool
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#! /bin/sh |
|---|
| 2 |
|
|---|
| 3 |
echo "$0 - for initialization of swish-e build environemnt" |
|---|
| 4 |
echo " not needed for user building" |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
#add --include-deps if you want to bootstrap with any other compiler than gcc |
|---|
| 8 |
#automake --add-missing --copy --include-deps |
|---|
| 9 |
|
|---|
| 10 |
set -x |
|---|
| 11 |
|
|---|
| 12 |
aclocal -I config \ |
|---|
| 13 |
&& libtoolize --force --copy \ |
|---|
| 14 |
&& autoheader \ |
|---|
| 15 |
&& automake --add-missing --copy --foreign \ |
|---|
| 16 |
&& autoconf \ |
|---|
| 17 |
&& rm -f config.cache |
|---|