* Makefile.in (just-check): Remove. Move body to...
[external/binutils.git] / gdb / testsuite / Makefile.in
1 # Makefile for regression testing the GNU debugger.
2 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2003, 2004,
3 # 2005, 2007, 2008 Free Software Foundation, Inc.
4
5 # This file is part of GDB.
6
7 # GDB 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 2, or (at your option)
10 # any later version.
11
12 # GDB 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.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21 VPATH = @srcdir@
22 srcdir = @srcdir@
23 prefix = @prefix@
24 exec_prefix = @exec_prefix@
25
26 target_alias = @target_noncanonical@
27 program_transform_name = @program_transform_name@
28 build_canonical = @build@
29 host_canonical = @host@
30 target_canonical = @target@
31
32 SHELL = @SHELL@
33 EXEEXT = @EXEEXT@
34 SUBDIRS = @subdirs@
35 RPATH_ENVVAR = @RPATH_ENVVAR@
36 ALL_SUBDIRS = gdb.ada gdb.arch gdb.asm gdb.base gdb.cp gdb.disasm \
37         gdb.dwarf2 \
38         gdb.fortran gdb.server gdb.java gdb.mi \
39         gdb.objc gdb.opt gdb.pascal gdb.threads gdb.trace \
40         gdb.xml \
41         $(SUBDIRS)
42
43 EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
44           echo $${rootme}/../../expect/expect ; \
45           else echo expect ; fi`
46
47 RUNTEST = $(RUNTEST_FOR_TARGET)
48
49 RUNTESTFLAGS =
50
51 RUNTEST_FOR_TARGET = `\
52   if [ -f $${srcdir}/../../dejagnu/runtest ]; then \
53     echo $${srcdir}/../../dejagnu/runtest; \
54   else \
55     if [ "$(host_canonical)" = "$(target_canonical)" ]; then \
56       echo runtest; \
57     else \
58       t='$(program_transform_name)'; echo runtest | sed -e $$t; \
59     fi; \
60   fi`
61
62 #### host, target, and site specific Makefile frags come in here.
63
64 # The use of $$(x_FOR_TARGET) reduces the command line length by not
65 # duplicating the lengthy definition.
66
67 TARGET_FLAGS_TO_PASS = \
68         "prefix=$(prefix)" \
69         "exec_prefix=$(exec_prefix)" \
70         "against=$(against)" \
71         'CC=$$(CC_FOR_TARGET)' \
72         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
73         "CFLAGS=$(TESTSUITE_CFLAGS)" \
74         'CXX=$$(CXX_FOR_TARGET)' \
75         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
76         "CXXFLAGS=$(CXXFLAGS)" \
77         "MAKEINFO=$(MAKEINFO)" \
78         "INSTALL=$(INSTALL)" \
79         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
80         "INSTALL_DATA=$(INSTALL_DATA)" \
81         "LDFLAGS=$(LDFLAGS)" \
82         "LIBS=$(LIBS)" \
83         "RUNTEST=$(RUNTEST)" \
84         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
85
86 all:
87         @echo "Nothing to be done for all..."
88
89 .NOEXPORT:
90 INFODIRS=doc
91 info:
92 install-info:
93 dvi:
94 pdf:
95 install-pdf:
96 html:
97 install-html:
98
99 install:
100
101 uninstall: force
102
103 site.exp: ./config.status Makefile
104         @echo "Making a new config file..."
105         -@rm -f ./tmp?
106         @touch site.exp
107         -@mv site.exp site.bak
108         @echo "## these variables are automatically generated by make ##" > ./tmp0
109         @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
110         @echo "# add them to the last section" >> ./tmp0
111         @echo "set host_triplet ${host_canonical}" >> ./tmp0
112         @echo "set target_alias $(target_alias)" >> ./tmp0
113         @echo "set target_triplet ${target_canonical}" >> ./tmp0
114         @echo "set build_triplet ${build_canonical}" >> ./tmp0
115         @echo "set srcdir ${srcdir}" >> ./tmp0
116         @echo "set tool gdb" >> ./tmp0
117         @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
118                 @cat ./tmp0 > site.exp
119         @cat site.bak | sed \
120                         -e '1,/^## All variables above are.*##/ d' >> site.exp
121         -@rm -f ./tmp?
122
123 installcheck:
124
125 check: all site.exp
126         rootme=`pwd`; export rootme; \
127         srcdir=${srcdir} ; export srcdir ; \
128         EXPECT=${EXPECT} ; export EXPECT ; \
129         EXEEXT=${EXEEXT} ; export EXEEXT ; \
130         $(RPATH_ENVVAR)=$$rootme/../../expect:$$rootme/../../libstdc++:$$rootme/../../tk/unix:$$rootme/../../tcl/unix:$$rootme/../../bfd:$$rootme/../../opcodes:$$$(RPATH_ENVVAR); \
131         export $(RPATH_ENVVAR); \
132         if [ -f $${rootme}/../../expect/expect ] ; then  \
133           TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
134           export TCL_LIBRARY ; fi ; \
135         $(RUNTEST) $(RUNTESTFLAGS) 
136
137 subdir_do: force
138         @for i in $(DODIRS); do \
139                 if [ -d ./$$i ] ; then \
140                         if (rootme=`pwd`/ ; export rootme ; \
141                             rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
142                                 cd ./$$i; \
143                                 $(MAKE) $(TARGET_FLAGS_TO_PASS) $(DO)) ; then true ; \
144                         else exit 1 ; fi ; \
145                 else true ; fi ; \
146         done
147
148 force:;
149
150 subdirs:
151         for dir in ${ALL_SUBDIRS} ; \
152         do \
153                 echo "$$dir:" ; \
154                 if [ -d $$dir ] ; then \
155                         (rootme=`pwd`/ ; export rootme ; \
156                          rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
157                          cd $$dir; $(MAKE) $(TARGET_FLAGS_TO_PASS)); \
158                 fi; \
159         done
160
161 clean mostlyclean:
162         -rm -f *~ core *.o a.out xgdb *.x *.grt
163         if [ x"${ALL_SUBDIRS}" != x ] ; then \
164             for dir in ${ALL_SUBDIRS}; \
165             do \
166                     echo "$$dir:"; \
167                     if [ -d $$dir ]; then \
168                             (cd $$dir; $(MAKE) clean); \
169                     fi; \
170             done ; \
171         else true; fi
172
173 distclean maintainer-clean realclean: clean
174         -rm -f *~ core
175         -rm -f Makefile config.status *-init.exp
176         -rm -fr *.log summary detail *.plog *.sum *.psum site.*
177         if [ x"${ALL_SUBDIRS}" != x ] ; then \
178             for dir in ${ALL_SUBDIRS}; \
179             do \
180                     echo "$$dir:"; \
181                     if [ -d $$dir ]; then \
182                             (cd $$dir; $(MAKE) distclean); \
183                     fi; \
184             done ; \
185         else true; fi
186
187 Makefile : Makefile.in config.status $(host_makefile_frag)
188         $(SHELL) config.status
189
190 config.status: configure
191         $(SHELL) config.status --recheck