aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMatthew Fioravante <matthew.fioravante@jhuapl.edu>2013-01-18 10:55:48 +0000
committerMatthew Fioravante <matthew.fioravante@jhuapl.edu>2013-01-18 10:55:48 +0000
commit92c84d8429a244ef94bddd36f32667b5236be5e1 (patch)
treea18b1bf2bbb7173b3ab46ae2b0f75ca7c90555bc /configure.ac
parent1f44053686221af63cca7be601d74c835777d89b (diff)
downloadxen-92c84d8429a244ef94bddd36f32667b5236be5e1.tar.gz
xen-92c84d8429a244ef94bddd36f32667b5236be5e1.tar.bz2
xen-92c84d8429a244ef94bddd36f32667b5236be5e1.zip
Add a top level configure script
Signed-off-by: Matthew Fioravante <matthew.fioravante@jhuapl.edu> Acked-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000000..5dacb46203
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,12 @@
+# -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.67])
+AC_INIT([Xen Hypervisor], m4_esyscmd([./version.sh ./xen/Makefile]),
+ [xen-devel@lists.xen.org], [xen], [http://www.xen.org/])
+AC_CONFIG_SRCDIR([./xen/common/kernel.c])
+AC_PREFIX_DEFAULT([/usr])
+
+AC_CONFIG_SUBDIRS([tools stubdom])
+
+AC_OUTPUT()