From 95ad9cc3c62abaecc4ff53e9c7ea553e12ca3833 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Fri, 6 Feb 2004 04:21:05 +0000 Subject: * configure.in: Rename from this .. * configure.ac: .. to this. Require Autoconf 2.50. --- configure.ac | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..739b260 --- /dev/null +++ b/configure.ac @@ -0,0 +1,35 @@ +dnl Process this file with autoconf to produce a configure script. +AC_PREREQ(2.50) +AC_INIT(runtest.exp) +dnl AC_CONFIG_AUX_DIR(..) + +dnl These are required by automake +AM_INIT_AUTOMAKE(dejagnu, 1.4.4) +AM_MAINTAINER_MODE +AC_PROG_MAKE_SET + +AC_PROG_CC +AC_PROG_CXX +AC_PROG_INSTALL +AC_EXEEXT + +AC_PROG_YACC +dnl AM_PROG_LEX + +dnl we need the path to Docbook so we can build packages. +DJ_AC_PATH_DOCBOOK + +dnl we need the path to the tcl shell to build a release +DJ_AC_PATH_TCLSH + +dnl Level of indirection for automake macro (baseboards:boards_DATA) +BOARDS='$(boards)' +AC_SUBST(BOARDS) +CONFIG='$(config)' +AC_SUBST(CONFIG) + +AC_CONFIG_SUBDIRS(example/calc example/hello) + +AC_OUTPUT(Makefile doc/Makefile testsuite/Makefile example/Makefile +testsuite/libdejagnu/Makefile) + -- cgit v1.1