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