You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
799 B

dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.13)
AC_INIT(runtest.exp)
dnl AC_CONFIG_AUX_DIR(..)
dnl These are required by automake
AM_INIT_AUTOMAKE(dejagnu, 1.4.1)
AM_MAINTAINER_MODE
AC_PROG_MAKE_SET
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_EXEEXT
AC_PROG_YACC
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 we need to know if we have libstl v2 or v3
DJ_AC_STL
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)
AC_OUTPUT(Makefile doc/Makefile testsuite/Makefile example/Makefile
testsuite/libdejagnu/Makefile)