summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap9
-rwxr-xr-xbootstrap-configure6
-rwxr-xr-xcompile2
3 files changed, 13 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index 199053bbe..c838d5e2d 100755
--- a/bootstrap
+++ b/bootstrap
@@ -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 000000000..2545c770f
--- /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 22442a82e..000000000
--- a/compile
+++ /dev/null
@@ -1,2 +0,0 @@
-#! /bin/sh
-./configure --enable-maintainer-mode && make && sudo make install