1 # Makefile for regression testing the GNU debugger.
2 # Copyright (C) 1992, 1993, 1994, 1995, 2007, 2008, 2009, 2010
3 # Free Software Foundation, Inc.
5 # This file is part of GDB.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 srcroot
= $(srcdir)/..
25 exec_prefix = @
exec_prefix@
27 host_alias
= @host_alias@
28 target_alias
= @target_alias@
29 program_transform_name
= @program_transform_name@
30 build_canonical
= @build@
31 host_canonical
= @host@
32 target_canonical
= @target@
33 target_cpu
= @target_cpu@
38 RPATH_ENVVAR
= @RPATH_ENVVAR@
40 EXPECT
= `if [ -f $${rootme}/../../expect/expect ] ; then \
41 echo $${rootme}/../../expect/expect ; \
42 else echo expect ; fi`
44 RUNTEST
= $(RUNTEST_FOR_TARGET
)
48 RUNTEST_FOR_TARGET
= `\
49 if [ -f $${srcdir}/../../../dejagnu/runtest ]; then \
50 echo $${srcdir}/../../../dejagnu/runtest; \
52 if [ "$(host_canonical)" = "$(target_canonical)" ]; then \
55 t='$(program_transform_name)'; echo runtest | sed -e '' $$t; \
61 if [ -x ../../../gas/as-new ]; then \
62 echo ../../../gas/as-new ; \
64 echo $(target_alias)-as ; \
68 if [ -x ../../../ld/ld-new ]; then \
69 echo ../../../ld/ld-new ; \
71 echo $(target_alias)-ld ; \
75 if [ -x ../../../sim/mips/run ]; then \
76 echo ../../../sim/mips/run ; \
78 echo $(target_alias)-run ; \
83 check: sanity
$(TESTS
)
85 @eval echo AS_FOR_TARGET
= $(AS_FOR_TARGET
)
86 @eval echo LD_FOR_TARGET
= $(LD_FOR_TARGET
)
87 @eval echo RUN_FOR_TARGET
= $(RUN_FOR_TARGET
)
91 # Rules for running all the tests, put into three types
92 # exit success, exit fail, print "Hello World"
96 $(RUN_FOR_TARGET
) $* > $*.log
99 # Rules for running the tests
101 .SUFFIXES
: .u .uue .ok .ok .run .hi .ko .ko
104 ulimit
-t
5 ; $(RUN_FOR_TARGET
) $*.run
> tmp-
$*
107 rm -f tmp-
$* $*.hi diff-
$*
108 ulimit
-t
5 ; $(RUN_FOR_TARGET
) $*.run
> tmp-
$*
109 echo
'Hello World!' | diff
- tmp-
$* > diff-
$*
110 cat tmp-
$* diff-
$* > $*.hi
114 ulimit
-t
5 ; $(RUN_FOR_TARGET
) $*.run
> tmp-
$* ; \
115 if
[ $$?
-eq
47 ] ; then \
123 # Rules for building all the tests and packing them into
127 uuencode
< $*.run
$*.run
> $*.u
128 @echo
"Move $*.u $*.uue"
130 uudecode
$(srcdir)/$*.uue
132 $(LD_FOR_TARGET
) -Ttext
0xa0020000 -o
$*.run
$*.o
134 $(AS_FOR_TARGET
) -I
$(srcdir) $(srcdir)/$*.s
-o
$*.o
141 -rm -f
*~ core
*.o a.out
*.x
*.grt
*.run tmp-
* diff-
*
143 # if [ x"${SUBDIRS}" != x ] ; then \
144 # for dir in ${SUBDIRS}; \
147 # if [ -d $$dir ]; then \
148 # (cd $$dir; $(MAKE) clean); \
153 distclean maintainer-clean
realclean: clean
155 -rm -f Makefile config.status
*-init.exp
156 -rm -fr
*.log summary detail
*.plog
*.sum
*.psum site.
*
157 # if [ x"${SUBDIRS}" != x ] ; then \
158 # for dir in ${SUBDIRS}; \
161 # if [ -d $$dir ]; then \
162 # (cd $$dir; $(MAKE) distclean); \
167 Makefile
: Makefile.in config.status
168 $(SHELL
) config.status
170 config.status
: configure
171 $(SHELL
) config.status
--recheck