Support for the SH
[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 ### none
107
108 all-nothing: force
109
110 clean-nothing: force
111
112 install-nothing: force
113
114
115 ### z8k
116
117 all-z8k: force
118 if [ -f ./z8k/Makefile ] ; then \
119 rootme=`pwd` ; export rootme ; \
120 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
121 else \
122 true ; \
123 fi
124
125 install-z8k: force
126 if [ -f ./z8k/Makefile ] ; then \
127 rootme=`pwd` ; export rootme ; \
128 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
129 else \
130 true ; \
131 fi
132
133 clean-z8k: force
134 if [ -f ./z8k/Makefile ] ; then \
135 rootme=`pwd` ; export rootme ; \
136 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
137 else \
138 true ; \
139 fi
140
141
142 ### h8300
143
144 all-h8300: force
145 if [ -f ./h8300/Makefile ] ; then \
146 rootme=`pwd` ; export rootme ; \
147 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
148 else \
149 true ; \
150 fi
151
152 install-h8300: force
153 if [ -f ./h8300/Makefile ] ; then \
154 rootme=`pwd` ; export rootme ; \
155 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
156 else \
157 true ; \
158 fi
159
160 clean-h8300: force
161 if [ -f ./h8300/Makefile ] ; then \
162 rootme=`pwd` ; export rootme ; \
163 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
164 else \
165 true ; \
166 fi
167
168 ###
169
170 ### h8500
171
172 all-h8500: force
173 if [ -f ./h8500/Makefile ] ; then \
174 rootme=`pwd` ; export rootme ; \
175 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
176 else \
177 true ; \
178 fi
179
180 install-h8500: force
181 if [ -f ./h8500/Makefile ] ; then \
182 rootme=`pwd` ; export rootme ; \
183 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
184 else \
185 true ; \
186 fi
187
188 clean-h8500: force
189 if [ -f ./h8500/Makefile ] ; then \
190 rootme=`pwd` ; export rootme ; \
191 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
192 else \
193 true ; \
194 fi
195
196 ###
197
198 ### sh
199
200 all-sh: force
201 if [ -f ./sh/Makefile ] ; then \
202 rootme=`pwd` ; export rootme ; \
203 ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
204 else \
205 true ; \
206 fi
207
208 install-sh: force
209 if [ -f ./sh/Makefile ] ; then \
210 rootme=`pwd` ; export rootme ; \
211 ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
212 else \
213 true ; \
214 fi
215
216 clean-sh: force
217 if [ -f ./sh/Makefile ] ; then \
218 rootme=`pwd` ; export rootme ; \
219 ( cd ./sh ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
220 else \
221 true ; \
222 fi
223
224 ###
225
226 force:
227
228
229 # with the gnu make, this is done automatically.
230
231 Makefile: $(srcdir)/Makefile.in $(target_makefile_frag)
232 $(SHELL) ./config.status
This page took 0.060065 seconds and 5 git commands to generate.