summaryrefslogtreecommitdiff
path: root/configure.in
blob: d57946cca08b47a3e4943a05c0251fff06b888c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

dnl Process this file with autoconf to produce a configure script.
 
AC_INIT(vbetool.c)
AM_INIT_AUTOMAKE(vbetool, 0.3)

dnl Checks for programs

AC_PROG_CC

dnl Simple, huh?

AC_ARG_WITH([x86emu], AC_HELP_STRING([--with-x86emu],[build with x86emu support]), [USEX86EMU=true])

AM_CONDITIONAL(WITH_X86EMU, test x$USEX86EMU = xtrue)

AC_OUTPUT([Makefile])