c70355c1f2ec5d63704ee35ce840590c3c9d5537
[platform/upstream/binutils.git] / sim / Makefile.in
1 #    Makefile template for Configure for the sim library.
2 #    Copyright (C) 1993, 1995, 1997 Free Software Foundation, Inc.
3 #    Written by Cygnus Support.
4
5 # This file is part of BFD, the Binary File Descriptor library.
6
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 2 of the License, or
10 # (at your option) any later version.
11
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.
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
24 prefix = @prefix@
25 exec_prefix = @exec_prefix@
26
27 host_alias = @host_alias@
28 target_alias = @target_alias@
29 program_transform_name = @program_transform_name@
30 bindir = @bindir@
31 libdir = @libdir@
32 tooldir = $(libdir)/$(target_alias)
33
34 datadir = @datadir@
35 mandir = @mandir@
36 man1dir = $(mandir)/man1
37 man2dir = $(mandir)/man2
38 man3dir = $(mandir)/man3
39 man4dir = $(mandir)/man4
40 man5dir = $(mandir)/man5
41 man6dir = $(mandir)/man6
42 man7dir = $(mandir)/man7
43 man8dir = $(mandir)/man8
44 man9dir = $(mandir)/man9
45 infodir = @infodir@
46 includedir = @includedir@
47
48 SHELL = /bin/sh
49
50 INSTALL = @INSTALL@
51 INSTALL_PROGRAM = @INSTALL_PROGRAM@
52 INSTALL_DATA = @INSTALL_DATA@
53
54 AR = @AR@
55 AR_FLAGS = rc
56 CC = @CC@
57 CFLAGS = @CFLAGS@
58 CC_FOR_BUILD = @CC_FOR_BUILD@
59 MAKEINFO = makeinfo
60 RANLIB = @RANLIB@
61
62 SUBDIRS = @subdirs@
63
64 INCDIR = $(srcdir)/../include
65 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
66 DEP = mkdep
67
68 # compilers to use to create programs which must be run in the build
69 # environment.
70 CC_FOR_BUILD = $(CC)
71
72 #### Makefile fragments come in here.
73 # @target_makefile_frag@
74 ###
75
76 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
77                 echo $${srcdir}/../dejagnu/runtest ; else echo runtest; \
78            fi`
79 RUNTESTFLAGS=
80
81 FLAGS_TO_PASS = \
82         "prefix=$(prefix)" \
83         "exec_prefix=$(exec_prefix)" \
84         "against=$(against)" \
85         "AR=$(AR)" \
86         "AR_FLAGS=$(AR_FLAGS)" \
87         "CC=$(CC)" \
88         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
89         "CFLAGS=$(CFLAGS)" \
90         "RANLIB=$(RANLIB)" \
91         "MAKEINFO=$(MAKEINFO)" \
92         "INSTALL=$(INSTALL)" \
93         "INSTALL_DATA=$(INSTALL_DATA)" \
94         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
95         "RUNTEST=$(RUNTEST)" \
96         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
97
98 # The use of $$(x_FOR_TARGET) reduces the command line length by not
99 # duplicating the lengthy definition.
100 TARGET_FLAGS_TO_PASS = \
101         "prefix=$(prefix)" \
102         "exec_prefix=$(exec_prefix)" \
103         "against=$(against)" \
104         'CC=$$(CC_FOR_TARGET)' \
105         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
106         "CFLAGS=$(CFLAGS)" \
107         "CHILLFLAGS=$(CHILLFLAGS)" \
108         'CHILL=$$(CHILL_FOR_TARGET)' \
109         "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
110         "CHILL_LIB=$(CHILL_LIB)" \
111         'CXX=$$(CXX_FOR_TARGET)' \
112         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
113         "CXXFLAGS=$(CXXFLAGS)" \
114         "INSTALL=$(INSTALL)" \
115         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
116         "INSTALL_DATA=$(INSTALL_DATA)" \
117         "MAKEINFO=$(MAKEINFO)" \
118         "RUNTEST=$(RUNTEST)" \
119         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
120
121
122 all:
123         @rootme=`pwd` ; export rootme ; \
124         for dir in . `echo ${SUBDIRS} | sed 's/testsuite//'` ; do \
125                 if [ "$$dir" = "." ]; then \
126                         true; \
127                 elif [ -d $$dir ]; then \
128                         (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \
129                 else true; fi; \
130         done
131
132 clean mostlyclean:
133         @rootme=`pwd` ; export rootme ; \
134         for dir in . ${SUBDIRS}; do \
135                 if [ "$$dir" = "." ]; then \
136                         true; \
137                 elif [ -d $$dir ]; then \
138                         (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \
139                 else true; fi; \
140         done
141
142 distclean maintainer-clean realclean:
143         @rootme=`pwd` ; export rootme ; \
144         for dir in . ${SUBDIRS}; do \
145                 if [ "$$dir" = "." ]; then \
146                         true; \
147                 elif [ -d $$dir ]; then \
148                         (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \
149                 else true; fi; \
150         done
151         rm -f Makefile config.cache config.log config.status
152
153 install:
154         @rootme=`pwd` ; export rootme ; \
155         for dir in . ${SUBDIRS}; do \
156                 if [ "$$dir" = "." ]; then \
157                         true; \
158                 elif [ -d $$dir ]; then \
159                         (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install); \
160                 else true; fi; \
161         done
162
163 installcheck:
164         @echo No installcheck target is available yet for the GNU simulators.
165
166 installcheck:
167
168 # The check target can not use subdir_do, because subdir_do does not
169 # use TARGET_FLAGS_TO_PASS.
170 check: force
171         @if [ -f testsuite/Makefile ]; then \
172           rootme=`pwd`; export rootme; \
173           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
174           cd testsuite; \
175           $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
176         else true; fi
177
178
179
180 info:
181 install-info:
182 dvi:
183
184 ### 
185 ### 
186
187 .NOEXPORT:
188 MAKEOVERRIDES=
189
190 .PHONY: check installcheck
191 check:
192 installcheck:
193
194 TAGS:
195
196 force:
197
198 Makefile: Makefile.in config.status
199         $(SHELL) ./config.status
200
201 config.status: configure
202         $(SHELL) ./config.status --recheck
203
204 # Utility to run autoconf in each directory that uses the common framework.
205 # This is intended to be invoked in $srcdir as
206 # "make -f Makefile.in autoconf-common".
207 .PHONY: autoconf-common
208 autoconf-common autoheader-common:
209         for d in * ; \
210         do \
211             if [ -d $$d -a -f $$d/configure.in ] ; \
212             then \
213                 if grep SIM_AC_COMMON $$d/configure.in >/dev/null ; \
214                 then \
215                     echo "Running autoconf in $$d ..." ; \
216                     (cd $$d && autoconf) ; \
217                     if [ $* = autoheader-common ] ; \
218                     then \
219                       echo "Running autoheader in $$d ..." ; \
220                       (cd $$d && autoheader) ; \
221                     fi ; \
222                 fi ; \
223             fi ; \
224         done
225
226 autoconf-changelog autoheader-changelog:
227         id="`id | sed -e 's/^[^(]*(\([^)]*\).*$$/\1/'`" ; \
228         name=`grep "^$$id:" /etc/passwd | cut -f 5 -d ':'` ; \
229         host="`hostname`" ; \
230         date="`date | sed 's/ [^ ]* \([0-9]*\)$$/ \1/'`" ; \
231         echo "$$date $$name $$id@$$host" ; \
232         for d in * ; \
233         do \
234             if [ -d $$d -a -f $$d/configure.in ] ; \
235             then \
236                 if grep SIM_AC_COMMON $$d/configure.in >/dev/null ; \
237                 then \
238                     echo "Creating new-ChangeLog in $$d ..." ; \
239                     ( echo "$$date  $$name  <$$id@$$host>" ; \
240                       echo "" ; \
241                       echo "    * configure: Regenerated to track ../common/aclocal.m4 changes." ; \
242                       if [ $* = autoheader-changelog ] ; \
243                       then \
244                         echo "  * config.in: Ditto." ; \
245                       fi ; \
246                       echo "" ; \
247                       cat $$d/ChangeLog \
248                     ) > $$d/new-ChangeLog ; \
249                 fi ; \
250             fi ; \
251         done
252
253 autoconf-install autoheader-install:
254         for d in * ; \
255         do \
256             if [ -d $$d -a -f $$d/configure.in ] ; \
257             then \
258                 if grep SIM_AC_COMMON $$d/configure.in >/dev/null ; \
259                 then \
260                     echo "Moving $$d/new-ChangeLog to $$d/ChangeLog ..." ; \
261                     mv $$d/new-ChangeLog $$d/ChangeLog ; \
262                 fi ; \
263             fi ; \
264         done