(endian): Add explicit rule for broken makes.
[deliverable/binutils-gdb.git] / sim / Makefile.in
1 # Makefile template for Configure for the sim library.
2 # Copyright (C) 1993 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., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 srcdir = .
22
23 prefix = /usr/local
24
25 exec_prefix = $(prefix)
26 bindir = $(exec_prefix)/bin
27 libdir = $(exec_prefix)/lib
28
29 datadir = $(prefix)/lib
30 mandir = $(prefix)/man
31 man1dir = $(mandir)/man1
32 man2dir = $(mandir)/man2
33 man3dir = $(mandir)/man3
34 man4dir = $(mandir)/man4
35 man5dir = $(mandir)/man5
36 man6dir = $(mandir)/man6
37 man7dir = $(mandir)/man7
38 man8dir = $(mandir)/man8
39 man9dir = $(mandir)/man9
40 infodir = $(prefix)/info
41 includedir = $(prefix)/include
42 oldincludedir =
43 docdir = doc
44
45 SHELL = /bin/sh
46
47 INSTALL = install -c
48 INSTALL_PROGRAM = $(INSTALL)
49 INSTALL_DATA = $(INSTALL)
50
51 AR = ar
52 AR_FLAGS = rc
53 CFLAGS = -g
54 BISON = bison
55 MAKEINFO = makeinfo
56 RANLIB = ranlib
57
58 INCDIR = $(srcdir)/../include
59 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
60 DEP = mkdep
61
62 SUBDIRS = " this is set by configire, don't change this "
63
64 ALL=all-nothing
65 CLEAN=clean-nothing
66 DO_INSTALL=install-nothing
67
68 #### host and target dependent Makefile fragments come in here.
69 ###
70
71 FLAGS_TO_PASS = \
72 "prefix=$(prefix)" \
73 "exec_prefix=$(exec_prefix)" \
74 "against=$(against)" \
75 "AR=$(AR)" \
76 "AR_FLAGS=$(AR_FLAGS)" \
77 "CC=$(CC)" \
78 "CFLAGS=$(CFLAGS)" \
79 "RANLIB=$(RANLIB)" \
80 "MAKEINFO=$(MAKEINFO)" \
81 "INSTALL=$(INSTALL)" \
82 "INSTALL_DATA=$(INSTALL_DATA)" \
83 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
84 "BISON=$(BISON)"
85
86
87 STAGESTUFF = $(TARGETLIB) $(OFILES)
88
89
90 all: endian.h $(ALL)
91
92 clean: $(CLEAN)
93 rm -f endian e.h endian.h
94
95 install: $(DO_INSTALL)
96
97 info:
98 install-info:
99
100 ### build endian.h via a temporary so that interrupted builds will not
101 ### leave an incomplete endian.h lying around.
102 endian.h: endian
103 ./endian > e.h
104 mv -f e.h endian.h
105
106 endian: endian.c
107
108 ### none
109
110 all-nothing: force
111
112 clean-nothing: force
113
114 install-nothing: force
115
116
117 ### z8k
118
119 all-z8k: force
120 if [ -f ./z8k/Makefile ] ; then \
121 rootme=`pwd` ; export rootme ; \
122 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
123 else \
124 true ; \
125 fi
126
127 install-z8k: force
128 if [ -f ./z8k/Makefile ] ; then \
129 rootme=`pwd` ; export rootme ; \
130 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
131 else \
132 true ; \
133 fi
134
135 clean-z8k: force
136 if [ -f ./z8k/Makefile ] ; then \
137 rootme=`pwd` ; export rootme ; \
138 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
139 else \
140 true ; \
141 fi
142
143
144 ### h8300
145
146 all-h8300: force
147 if [ -f ./h8300/Makefile ] ; then \
148 rootme=`pwd` ; export rootme ; \
149 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
150 else \
151 true ; \
152 fi
153
154 install-h8300: force
155 if [ -f ./h8300/Makefile ] ; then \
156 rootme=`pwd` ; export rootme ; \
157 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
158 else \
159 true ; \
160 fi
161
162 clean-h8300: force
163 if [ -f ./h8300/Makefile ] ; then \
164 rootme=`pwd` ; export rootme ; \
165 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
166 else \
167 true ; \
168 fi
169
170 ###
171
172 ### h8500
173
174 all-h8500: force
175 if [ -f ./h8500/Makefile ] ; then \
176 rootme=`pwd` ; export rootme ; \
177 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
178 else \
179 true ; \
180 fi
181
182 install-h8500: force
183 if [ -f ./h8500/Makefile ] ; then \
184 rootme=`pwd` ; export rootme ; \
185 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
186 else \
187 true ; \
188 fi
189
190 clean-h8500: force
191 if [ -f ./h8500/Makefile ] ; then \
192 rootme=`pwd` ; export rootme ; \
193 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
194 else \
195 true ; \
196 fi
197
198 ###
199
200 ### sh
201
202 all-sh: force
203 if [ -f ./sh/Makefile ] ; then \
204 rootme=`pwd` ; export rootme ; \
205 ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
206 else \
207 true ; \
208 fi
209
210 install-sh: force
211 if [ -f ./sh/Makefile ] ; then \
212 rootme=`pwd` ; export rootme ; \
213 ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
214 else \
215 true ; \
216 fi
217
218 clean-sh: force
219 if [ -f ./sh/Makefile ] ; then \
220 rootme=`pwd` ; export rootme ; \
221 ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
222 else \
223 true ; \
224 fi
225
226 ###
227
228 force:
229
230
231 # with the gnu make, this is done automatically.
232
233 Makefile: $(srcdir)/Makefile.in $(target_makefile_frag)
234 $(SHELL) ./config.status
This page took 0.033991 seconds and 5 git commands to generate.