* Makefile.in, configure.in: if target isn't supported, build a
[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 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
94 install: $(INSTALL)
95
96 endian.h: endian
97 ./endian > endian.h
98
99
100
101 ### none
102
103 all-nothing: force
104
105 clean-nothing: force
106
107 install-nothing: force
108
109
110 ### z8k
111
112 all-z8k: force
113 if [ -f ./z8k/Makefile ] ; then \
114 rootme=`pwd` ; export rootme ; \
115 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
116 else \
117 true ; \
118 fi
119
120 install-z8k: force
121 if [ -f ./z8k/Makefile ] ; then \
122 rootme=`pwd` ; export rootme ; \
123 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
124 else \
125 true ; \
126 fi
127
128 clean-z8k: force
129 if [ -f ./z8k/Makefile ] ; then \
130 rootme=`pwd` ; export rootme ; \
131 ( cd ./z8k ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
132 else \
133 true ; \
134 fi
135
136
137 ### h8300
138
139 all-h8300: force
140 if [ -f ./h8300/Makefile ] ; then \
141 rootme=`pwd` ; export rootme ; \
142 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
143 else \
144 true ; \
145 fi
146
147 install-h8300: force
148 if [ -f ./h8300/Makefile ] ; then \
149 rootme=`pwd` ; export rootme ; \
150 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
151 else \
152 true ; \
153 fi
154
155 clean-h8300: force
156 if [ -f ./h8300/Makefile ] ; then \
157 rootme=`pwd` ; export rootme ; \
158 ( cd ./h8300 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
159 else \
160 true ; \
161 fi
162
163 ###
164
165 ### h8500
166
167 all-h8500: force
168 if [ -f ./h8500/Makefile ] ; then \
169 rootme=`pwd` ; export rootme ; \
170 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) all) ; \
171 else \
172 true ; \
173 fi
174
175 install-h8500: force
176 if [ -f ./h8500/Makefile ] ; then \
177 rootme=`pwd` ; export rootme ; \
178 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) install) ; \
179 else \
180 true ; \
181 fi
182
183 clean-h8500: force
184 if [ -f ./h8500/Makefile ] ; then \
185 rootme=`pwd` ; export rootme ; \
186 ( cd ./h8500 ; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
187 else \
188 true ; \
189 fi
190
191 ###
192
193 force:
194
195
196 # with the gnu make, this is done automatically.
197
198 Makefile: $(srcdir)/Makefile.in $(target_makefile_frag)
199 $(SHELL) ./config.status
This page took 0.035204 seconds and 5 git commands to generate.