summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-05-16 15:45:34 +0000
committerDana Jansens <danakj@orodu.net>2002-05-16 15:45:34 +0000
commitbd196c710829f27458e620b8933cb67a33044cc0 (patch)
tree667e9ff8fe89d4ae136ad7a31a1f589138a04d4f /bootstrap
parent4f04dcaf2243b64cbeb35c078b986c161685c589 (diff)
adding bootstrap which generates all the auto* files such as configure
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap13
1 files changed, 13 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 00000000..13c6a623
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+sh() {
+ /bin/sh -c "set -x; $*"
+}
+
+sh aclocal
+sh automake --foreign --include-deps
+sh autoconf
+
+echo
+echo You are now ready to run ./configure
+echo enjoy!