## -*- Mode: Makefile -*- ## --------------------------------------------------------------------- ## Makefile.am -- process this file with automake to produce Makefile.in ## ## Time-stamp: "2007-07-04 11:51:47 bkorb" ## Author: Bruce Korb ## ## This file is part of AutoGen. ## AutoGen copyright (c) 1992-2007 by Bruce Korb - all rights reserved ## ## AutoGen is free software: you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by the ## Free Software Foundation, either version 3 of the License, or ## (at your option) any later version. ## ## AutoGen is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ## See the GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License along ## with this program. If not, see . ## ## --------------------------------------------------------------------- ## $Id: Makefile.am,v 4.15 2007/07/04 20:51:12 bkorb Exp $ ## --------------------------------------------------------------------- SHELL_TESTS = define.test directives.test error.test expr.test extract.test \ include.test opts.test output.test snarf.test suffix.test shell.test NOSHELL_TESTS = \ alist.test case.test defref.test dynref.test \ endmac.test for.test forfrom.test forin.test format.test get.test \ gperf.test heredef.test html.test in.test license.test line.test \ loop.test make.test match.test pseudo.test reorder.test stack.test \ stress.test string.test strtable.test UNREADY_TESTS = daemon.test TESTS = @AGEN5_TESTS@ EXTRA_DIST = $(TESTS) daemon.test FUNCLIST = funcCase.c funcDef.c funcEval.c funcFor.c funcIf.c functions.c EXPRLIST = expFormat.c expGuile.c expOutput.c expPrint.c expState.c \ expString.c expGperf.c expExtract.c $(FUNCLIST) TESTS_ENVIRONMENT = \ COMPILE='$(COMPILE)' CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' \ EXPRLIST="$(EXPRLIST)" SHELL=$(SHELL) distclean-local: -rm -rf testdir FAILURES $(TESTS) : defs defs : ${top_builddir}/autoopts/test/defs @set -x ; \ sed -e '/^srcdir=/s@".*"@"$(srcdir)"@' \ -e '/^top_srcdir=/s@".*"@"$(top_srcdir)"@' \ ${top_builddir}/autoopts/test/defs > $@ ; \ cd $(srcdir) ; chmod +x *.test || : ${top_builddir}/autoopts/test/defs : cd ${top_builddir}/autoopts/test ; $(MAKE) defs verbose : defs rm -rf FAILURES testdir ; \ VERBOSE=true $(MAKE) check TESTS="$(TESTS)" # Makefile.am ends here