source: trunk/essentials/sys-devel/automake-1.7/lib/am/dejagnu.am

Last change on this file was 3120, checked in by bird, 18 years ago

automake 1.7.9

File size: 4.1 KB
Line 
1## automake - create Makefile.in from Makefile.am
2## Copyright 1994, 1995, 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
3
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2, or (at your option)
7## any later version.
8
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12## GNU General Public License for more details.
13
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17## 02111-1307, USA.
18
19## Flags for DejaGnu.
20RUNTESTFLAGS =
21
22## Name of tool to use. Default is the same as the package.
23DEJATOOL = $(PACKAGE)
24
25## Default flags to pass to dejagnu. The user can override this.
26RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir
27
28## In Cygnus mode, these are found in the build tree.
29## Otherwise they are looked for in $PATH.
30if %?CYGNUS%
31EXPECT = `if test -f $(top_builddir)/../expect/expect; then \
32 echo $(top_builddir)/../expect/expect; \
33 else \
34 echo expect; \
35 fi`
36
37RUNTEST = `if test -f $(top_srcdir)/../dejagnu/runtest; then \
38 echo $(top_srcdir)/../dejagnu/runtest; \
39 else \
40 echo runtest; \
41 fi`
42else ! %?CYGNUS%
43EXPECT = expect
44RUNTEST = runtest
45endif ! %?CYGNUS%
46
47
48.PHONY: check-DEJAGNU
49check-DEJAGNU: site.exp
50## Life is easiest with an absolute srcdir, so do that.
51 srcdir=`$(am__cd) $(srcdir) && pwd`; export srcdir; \
52 EXPECT=$(EXPECT); export EXPECT; \
53## Allow this to work when expect and DejaGnu are in tree.
54## Only required when --cygnus in force.
55?CYGNUS? if [ -f $(top_builddir)/../expect/expect ]; then \
56?CYGNUS? TCL_LIBRARY=`$(am__cd) $(top_srcdir)/../tcl/library && pwd`; \
57?CYGNUS? export TCL_LIBRARY; \
58?CYGNUS? fi; \
59 runtest=$(RUNTEST); \
60## If runtest can't be found, print a warning but don't die. It is
61## pointless to cause a failure if the tests cannot be run at all.
62 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
63 l='$(DEJATOOL)'; for tool in $$l; do \
64 $$runtest $(AM_RUNTESTFLAGS) $(RUNTESTDEFAULTFLAGS) $(RUNTESTFLAGS); \
65 done; \
66 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
67 fi
68
69
70## ------------------- ##
71## Building site.exp. ##
72## ------------------- ##
73
74## Note that in the rule we don't directly generate site.exp to avoid
75## the possibility of a corrupted site.exp if make is interrupted.
76## Jim Meyering has some useful text on this topic.
77site.exp: Makefile
78 @echo 'Making a new site.exp file...'
79 @echo '## these variables are automatically generated by make ##' >site.tmp
80 @echo '# Do not edit here. If you wish to override these values' >>site.tmp
81 @echo '# edit the last section' >>site.tmp
82 @echo 'set srcdir $(srcdir)' >>site.tmp
83 @echo "set objdir `pwd`" >>site.tmp
84## Quote the *_alias variables because they might be empty.
85?BUILD? @echo 'set build_alias "$(build_alias)"' >>site.tmp
86?BUILD? @echo 'set build_triplet $(build_triplet)' >>site.tmp
87?HOST? @echo 'set host_alias "$(host_alias)"' >>site.tmp
88?HOST? @echo 'set host_triplet $(host_triplet)' >>site.tmp
89?TARGET? @echo 'set target_alias "$(target_alias)"' >>site.tmp
90?TARGET? @echo 'set target_triplet $(target_triplet)' >>site.tmp
91 @echo '## All variables above are generated by configure. Do Not Edit ##' >>site.tmp
92 @test ! -f site.exp || \
93 sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
94 @-rm -f site.bak
95 @test ! -f site.exp || mv site.exp site.bak
96 @mv site.tmp site.exp
97
98## ---------- ##
99## Cleaning. ##
100## ---------- ##
101
102.PHONY distclean-am: distclean-DEJAGNU
103
104distclean-DEJAGNU:
105## Any other cleaning must be done by the user or by the test suite
106## itself. We can't predict what dejagnu or the test suite might
107## generate.
108 -rm -f site.exp site.bak
109 -l='$(DEJATOOL)'; for tool in $$l; do \
110 rm -f $$tool.sum $$tool.log; \
111 done
Note: See TracBrowser for help on using the repository browser.