summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-11-07 21:28:40 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-11-07 21:28:40 (GMT)
commitc8e39d6d298f921b8b510bb88bc210fb30f0bd10 (patch)
treeb5a3a68b1d64d667c19031530084a22479938962 /bootstrap
parentc3c8a70767e9e3b2d4bda3d43f2fbb646c1ed0b3 (diff)
configure: use autoconf to generate configure
Create configure.ac, an autoconf script to generate ./configure This will be needed by a subsequent patch to properly handle --build and --host, and more tests, when the kconfig stuff will be installed pre-built. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 7 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..1260830
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e
+
+printf "Running autoconf...\n"
+autoconf -Wall --force
+
+printf "Done. You may now run:\n ./configure\n"