diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2005-10-26 22:40:53 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2005-10-26 22:40:53 +0000 |
commit | fbe418e8c919e8063c86ea9f26cdebbe69acdb86 (patch) | |
tree | d777dbb3a3b93134ed7a9db212f71afb2f5bd784 | |
parent | 1364c63b9eea39b40ab07e0045ef26e76d1ade1a (diff) |
Update bootstrap stuff
-rwxr-xr-x | bootstrap | 9 | ||||
-rwxr-xr-x | bootstrap-configure | 6 | ||||
-rwxr-xr-x | compile | 2 |
3 files changed, 13 insertions, 4 deletions
@@ -1,2 +1,7 @@ -#! /bin/sh -aclocal && autoheader && libtoolize --copy --force && automake --add-missing --copy --ignore-deps && autoconf +#!/bin/sh + +aclocal && \ + autoheader && \ + libtoolize --copy --force && \ + automake --add-missing --copy && \ + autoconf diff --git a/bootstrap-configure b/bootstrap-configure new file mode 100755 index 00000000..2545c770 --- /dev/null +++ b/bootstrap-configure @@ -0,0 +1,6 @@ +#!/bin/sh + +./bootstrap && \ + ./configure --enable-maintainer-mode \ + --enable-debug \ + --prefix=/usr diff --git a/compile b/compile deleted file mode 100755 index 22442a82..00000000 --- a/compile +++ /dev/null @@ -1,2 +0,0 @@ -#! /bin/sh -./configure --enable-maintainer-mode && make && sudo make install |