* Make-common.in (SIM_SCACHE, SIM_DEFAULT_MODEL): Assign configured values.
[platform/upstream/binutils.git] / sim / common / Make-common.in
1 # Makefile fragment for common parts of all simulators.
2 # Copyright (C) 1997 Free Software Foundation, Inc.
3 # Contributed by Cygnus Support.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 # This Makefile fragment consists of two separate parts.
20 # They are merged into the final Makefile at points denoted by
21 # "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
22 #
23 # The target Makefile should look like:
24 #
25 #># Copyright blah blah
26 #>
27 #>## COMMON_PRE_CONFIG_FRAG
28 #>
29 #># Any overrides necessary for the SIM_FOO config vars.
30 #>SIM_FOO = ...
31 #>
32 #>## COMMON_POST_CONFIG_FRAG
33 #>
34 #># Rules to build target specific .o's.
35
36 ## COMMON_PRE_CONFIG_FRAG
37
38 VPATH = @srcdir@
39 srcdir = @srcdir@
40 srcroot = $(srcdir)/../..
41
42 prefix = @prefix@
43 exec_prefix = @exec_prefix@
44
45 host_alias = @host_alias@
46 target_alias = @target_alias@
47 program_transform_name = @program_transform_name@
48 bindir = @bindir@
49
50 libdir = @libdir@
51 tooldir = $(libdir)/$(target_alias)
52
53 datadir = @datadir@
54 mandir = @mandir@
55 man1dir = $(mandir)/man1
56 infodir = @infodir@
57 includedir = @includedir@
58
59 SHELL = /bin/sh
60
61 INSTALL = @INSTALL@
62 INSTALL_PROGRAM = @INSTALL_PROGRAM@
63 INSTALL_DATA = @INSTALL_DATA@
64
65 CC = @CC@
66 CC_FOR_BUILD = @CC_FOR_BUILD@
67 CFLAGS = @CFLAGS@
68 SIM_BSWAP = @sim_bswap@
69 SIM_CFLAGS = @sim_cflags@
70 SIM_DEBUG = @sim_debug@
71 SIM_TRACE = @sim_trace@
72 SIM_PROFILE = @sim_profile@
73
74 SIM_ASSERT = @sim_assert@
75 SIM_ALIGNMENT = @sim_alignment@
76 SIM_DEFAULT_MODEL = @sim_default_model@
77 SIM_ENDIAN = @sim_endian@
78 SIM_FLOAT = @sim_float@
79 SIM_HARDWARE = @sim_hardware@
80 SIM_HOSTENDIAN = @sim_hostendian@
81 SIM_INLINE = @sim_inline@
82 SIM_PACKAGES = @sim_packages@
83 SIM_REGPARM = @sim_regparm@
84 SIM_RESERVED_BITS = @sim_reserved_bits@
85 SIM_SCACHE = @sim_scache@
86 SIM_SMP = @sim_smp@
87 SIM_STDCALL = @sim_stdcall@
88 SIM_WARNINGS = @sim_warnings@
89 SIM_XOR_ENDIAN = @sim_xor_endian@
90
91 HDEFINES = @HDEFINES@
92 TDEFINES =
93
94 AR = @AR@
95 AR_FLAGS = rc
96 RANLIB = @RANLIB@
97 MAKEINFO = makeinfo
98
99 # Each simulator's Makefile.in defines one or more of these variables
100 # to override our settings as necessary.  There is no need to define these
101 # in the simulator's Makefile.in if one is using the default value.  In fact
102 # it's preferable not to.
103
104 # List of object files, less common parts.
105 SIM_OBJS =
106 # List of extra dependencies.
107 # Generally this consists of simulator specific files included by sim-main.h.
108 SIM_EXTRA_DEPS =
109 # List of flags to always pass to $(CC).
110 SIM_EXTRA_CFLAGS =
111 # List of extra libraries to link with.
112 SIM_EXTRA_LIBS =
113 # List of extra program dependencies.
114 SIM_EXTRA_LIBDEPS =
115 # List of main object files for `run'.
116 SIM_RUN_OBJS = run.o
117 # Dependency of `all' to build any extra files.
118 SIM_EXTRA_ALL =
119 # Dependency of `install' to install any extra files.
120 SIM_EXTRA_INSTALL =
121 # Dependency of `clean' to clean any extra files.
122 SIM_EXTRA_CLEAN =
123
124 ## End COMMON_PRE_CONFIG_FRAG
125
126 ## COMMON_POST_CONFIG_FRAG
127
128 CONFIG_CFLAGS = @DEFS@ \
129         $(SIM_CFLAGS) \
130         $(SIM_DEBUG) \
131         $(SIM_DEFAULT_MODEL) \
132         $(SIM_TRACE) \
133         $(SIM_PROFILE) \
134         $(SIM_BSWAP) \
135         $(SIM_ASSERT) \
136         $(SIM_ALIGNMENT) \
137         $(SIM_ENDIAN) \
138         $(SIM_FLOAT) \
139         $(SIM_HARDWARE) \
140         $(SIM_HOSTENDIAN) \
141         $(SIM_INLINE) \
142         $(SIM_PACKAGES) \
143         $(SIM_REGPARM) \
144         $(SIM_RESERVED_BITS) \
145         $(SIM_SCACHE) \
146         $(SIM_SMP) \
147         $(SIM_STDCALL) \
148         $(SIM_WARNINGS) \
149         $(SIM_XOR_ENDIAN) \
150         $(SIM_EXTRA_CFLAGS) \
151         $(HDEFINES) $(TDEFINES)
152 CSEARCH = -I. -I$(srcdir) -I../common -I$(srcdir)/../common \
153   -I../../include -I$(srcroot)/include \
154   -I../../bfd -I$(srcroot)/bfd \
155   -I../../opcodes -I$(srcroot)/opcodes
156 ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
157 BUILD_CFLAGS = -g -O $(CSEARCH)
158
159 LIBIBERTY_LIB = ../../libiberty/libiberty.a
160 BFD_LIB = ../../bfd/libbfd.a
161 OPCODES_LIB = ../../opcodes/libopcodes.a
162 CONFIG_LIBS = @LIBS@
163 LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
164         $(SIM_EXTRA_LIBDEPS)
165 EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
166         $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
167
168 LIB_OBJS = callback.o targ-map.o $(SIM_OBJS)
169
170 all: libsim.a run $(SIM_EXTRA_ALL)
171
172 libsim.a: $(LIB_OBJS)
173         rm -f libsim.a
174         $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
175         $(RANLIB) libsim.a
176
177 run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
178         $(CC) $(ALL_CFLAGS) -o run \
179           $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
180
181 run.o: $(srcdir)/../common/run.c config.h tconfig.h \
182           $(srcroot)/include/callback.h
183         $(CC) -c $(srcdir)/../common/run.c $(ALL_CFLAGS)
184
185 # FIXME: Ideally, callback.o and friends live in a library outside of
186 # both the gdb and simulator source trees (e.g. devo/remote.  Not
187 # devo/libremote because this directory would contain more than just
188 # a library).
189
190 callback.o: $(srcdir)/../common/callback.c config.h tconfig.h \
191           $(srcroot)/include/callback.h targ-vals.h
192         $(CC) -c $(srcdir)/../common/callback.c $(ALL_CFLAGS)
193
194 targ-map.o: targ-map.c targ-vals.h
195
196 gentmap: Makefile $(srcdir)/../common/gentmap.c targ-vals.def
197         $(CC_FOR_BUILD) $(srcdir)/../common/gentmap.c -o gentmap $(BUILD_CFLAGS)
198
199 targ-vals.h: gentmap
200         rm -f targ-vals.h
201         ./gentmap -h >targ-vals.h
202
203 targ-map.c: gentmap
204         rm -f targ-map.c
205         ./gentmap -c >targ-map.c
206
207
208 #
209 # Rules for building sim-* components.  Triggered by listing the corresponding
210 # .o file in the list of simulator targets.
211 #
212
213 sim_main_headers = \
214         sim-main.h \
215         $(srcdir)/../common/sim-config.h \
216         $(srcdir)/../common/sim-base.h \
217         $(srcdir)/../common/sim-basics.h \
218         $(srcdir)/../common/sim-memopt.h \
219         $(srcdir)/../common/sim-model.h \
220         $(srcdir)/../common/sim-module.h \
221         $(srcdir)/../common/sim-trace.h \
222         $(srcdir)/../common/sim-profile.h \
223         $(srcdir)/../common/sim-engine.h \
224         $(srcdir)/../common/sim-events.h \
225         $(srcdir)/../common/sim-watch.h \
226         $(srcdir)/../common/sim-assert.h \
227         tconfig.h
228
229 sim-assert_h = $(srcdir)/../common/sim-assert.h
230 sim-endian_h = $(srcdir)/../common/sim-endian.h
231 sim-n-endian_h = $(srcdir)/../common/sim-n-endian.h
232 sim-bits_h = $(srcdir)/../common/sim-bits.h
233 sim-config_h = $(srcdir)/../common/sim-config.h
234 sim-n-bits_h = $(srcdir)/../common/sim-n-bits.h
235 sim-core_h = $(srcdir)/../common/sim-core.h
236 sim-n-core_h = $(srcdir)/../common/sim-n-core.h
237 sim-engine_h = $(srcdir)/../common/sim-engine.h
238 sim-events_h = $(srcdir)/../common/sim-events.h
239 sim-fpu_h = $(srcdir)/../common/sim-fpu.h
240 sim-io_h = $(srcdir)/../common/sim-io.h
241 sim-options_h = $(srcdir)/../common/sim-options.h
242
243 # FIXME: If this complicated way of building .o files from ../common is
244 # necessary, the reason should be documented here.
245
246 BUILT_SRC_FROM_COMMON= \
247         sim-endian.c \
248         sim-inline.c \
249         sim-bits.c \
250         sim-events.c \
251         sim-core.c \
252         sim-config.c \
253         sim-io.c
254
255 sim-abort.o: $(srcdir)/../common/sim-abort.c \
256         $(SIM_EXTRA_DEPS)
257         $(CC) -c $(srcdir)/../common/sim-abort.c $(ALL_CFLAGS)
258
259 sim-bits.o: $(srcdir)/../common/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
260         $(SIM_EXTRA_DEPS)
261         $(CC) -c $(srcdir)/../common/sim-bits.c $(ALL_CFLAGS)
262
263 sim-config.o: $(srcdir)/../common/sim-config.c $(sim-config_h) $(sim-nconfig_h) \
264         $(SIM_EXTRA_DEPS)
265         $(CC) -c $(srcdir)/../common/sim-config.c $(ALL_CFLAGS)
266
267 sim-core.o: $(srcdir)/../common/sim-core.c $(sim-core_h) $(sim-n-core_h) \
268         $(SIM_EXTRA_DEPS)
269         $(CC) -c $(srcdir)/../common/sim-core.c $(ALL_CFLAGS)
270
271 sim-endian.o: $(srcdir)/../common/sim-endian.c $(sim-endian_h) $(sim-n-endian_h) \
272         $(SIM_EXTRA_DEPS)
273         $(CC) -c $(srcdir)/../common/sim-endian.c $(ALL_CFLAGS)
274
275 sim-engine.o: $(srcdir)/../common/sim-engine.c $(sim_main_headers) $(sim-engine_h) \
276         $(SIM_EXTRA_DEPS)
277         $(CC) -c $(srcdir)/../common/sim-engine.c $(ALL_CFLAGS)
278
279 sim-events.o: $(srcdir)/../common/sim-events.c $(sim-events_h) \
280         $(SIM_EXTRA_DEPS)
281         $(CC) -c $(srcdir)/../common/sim-events.c $(ALL_CFLAGS)
282
283 sim-fpu.o: $(srcdir)/../common/sim-fpu.c $(sim-fpu_h) \
284         $(SIM_EXTRA_DEPS)
285         $(CC) -c $(srcdir)/../common/sim-fpu.c $(ALL_CFLAGS)
286
287 sim-hload.o: $(srcdir)/../common/sim-hload.c $(sim-assert_h) \
288         $(SIM_EXTRA_DEPS)
289         $(CC) -c $(srcdir)/../common/sim-hload.c $(ALL_CFLAGS)
290
291 sim-hrw.o: $(srcdir)/../common/sim-hrw.c $(sim-assert_h) \
292         $(SIM_EXTRA_DEPS)
293         $(CC) -c $(srcdir)/../common/sim-hrw.c $(ALL_CFLAGS)
294
295 sim-inline.c: $(srcdir)/../common/sim-inline.c
296         rm -f $@ tmp-$@
297         echo "# 1 \"$(srcdir)/../common/$@\"" > tmp-$@
298         cat $(srcdir)/../common/$@ >> tmp-$@
299         $(srcdir)/../../move-if-change tmp-$@ $@
300
301 sim-io.o: $(srcdir)/../common/sim-io.c $(sim_main_headers) $(sim-io_h) \
302         $(SIM_EXTRA_DEPS)
303         $(CC) -c $(srcdir)/../common/sim-io.c $(ALL_CFLAGS)
304
305 sim-memopt.o: $(srcdir)/../common/sim-memopt.c $(sim_main_headers) \
306           $(sim-io_h) $(SIM_EXTRA_DEPS)
307         $(CC) -c $(srcdir)/../common/sim-memopt.c $(ALL_CFLAGS)
308
309 sim-module.o: $(srcdir)/../common/sim-module.c $(sim_main_headers) \
310           $(sim-io_h) $(SIM_EXTRA_DEPS)
311         $(CC) -c $(srcdir)/../common/sim-module.c $(ALL_CFLAGS)
312
313 sim-options.o: $(srcdir)/../common/sim-options.c $(sim_main_headers) \
314           $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
315         $(CC) -c $(srcdir)/../common/sim-options.c $(ALL_CFLAGS)
316
317 sim-reason.o: $(srcdir)/../common/sim-reason.c $(sim_main_headers) \
318         $(SIM_EXTRA_DEPS)
319         $(CC) -c $(srcdir)/../common/sim-reason.c $(ALL_CFLAGS)
320
321 sim-resume.o: $(srcdir)/../common/sim-resume.c $(sim_main_headers) \
322         $(SIM_EXTRA_DEPS)
323         $(CC) -c $(srcdir)/../common/sim-resume.c $(ALL_CFLAGS)
324
325 sim-run.o: $(srcdir)/../common/sim-run.c $(sim_main_headers) \
326         $(SIM_EXTRA_DEPS)
327         $(CC) -c $(srcdir)/../common/sim-run.c $(ALL_CFLAGS)
328
329 sim-stop.o: $(srcdir)/../common/sim-stop.c $(sim_main_headers) \
330         $(SIM_EXTRA_DEPS)
331         $(CC) -c $(srcdir)/../common/sim-stop.c $(ALL_CFLAGS)
332
333 sim-trace.o: $(srcdir)/../common/sim-trace.c $(sim_main_headers) \
334           $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
335         $(CC) -c $(srcdir)/../common/sim-trace.c $(ALL_CFLAGS)
336
337 sim-profile.o: $(srcdir)/../common/sim-profile.c $(sim_main_headers) \
338           $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
339         $(CC) -c $(srcdir)/../common/sim-profile.c $(ALL_CFLAGS)
340
341 sim-model.o: $(srcdir)/../common/sim-model.c $(sim_main_headers) \
342           $(sim-io_h) $(SIM_EXTRA_DEPS)
343         $(CC) -c $(srcdir)/../common/sim-model.c $(ALL_CFLAGS)
344
345 sim-utils.o: $(srcdir)/../common/sim-utils.c $(sim_main_headers) \
346           $(SIM_EXTRA_DEPS)
347         $(CC) -c $(srcdir)/../common/sim-utils.c $(ALL_CFLAGS)
348
349 sim-watch.o: $(srcdir)/../common/sim-watch.c $(sim_main_headers) \
350           $(SIM_EXTRA_DEPS)
351         $(CC) -c $(srcdir)/../common/sim-watch.c $(ALL_CFLAGS)
352
353 sim-load.o: $(srcdir)/../common/sim-load.c
354         $(CC) -c $(srcdir)/../common/sim-load.c $(ALL_CFLAGS)
355
356 nrun.o: $(srcdir)/../common/nrun.c config.h tconfig.h \
357           $(srcroot)/include/callback.h $(sim_main_headers)
358         $(CC) -c $(srcdir)/../common/nrun.c $(ALL_CFLAGS)
359
360 # CGEN support.
361
362 cgen-run.o: $(srcdir)/../common/cgen-run.c $(sim_main_headers) \
363           $(SIM_EXTRA_DEPS)
364         $(CC) -c $(srcdir)/../common/cgen-run.c $(ALL_CFLAGS)
365
366 cgen-scache.o: $(srcdir)/../common/cgen-scache.c $(sim_main_headers) \
367           $(SIM_EXTRA_DEPS) $(srcdir)/../common/cgen-scache.h
368         $(CC) -c $(srcdir)/../common/cgen-scache.c $(ALL_CFLAGS)
369
370 cgen-trace.o: $(srcdir)/../common/cgen-trace.c $(sim_main_headers) \
371           $(SIM_EXTRA_DEPS) $(srcdir)/../common/cgen-trace.h
372         $(CC) -c $(srcdir)/../common/cgen-trace.c $(ALL_CFLAGS)
373
374 cgen-utils.o: $(srcdir)/../common/cgen-utils.c $(sim_main_headers) \
375           $(SIM_EXTRA_DEPS) mem-ops.h sem-ops.h
376         $(CC) -c $(srcdir)/../common/cgen-utils.c $(ALL_CFLAGS)
377
378 # Support targets.
379
380 install: install-common $(SIM_EXTRA_INSTALL)
381
382 install-common: installdirs
383         n=`echo run | sed '$(program_transform_name)'`; \
384         $(INSTALL_PROGRAM) run $(bindir)/$$n
385
386 installdirs:
387         $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
388
389 check:
390
391 info:
392 clean-info:
393 install-info:
394
395 .NOEXPORT:
396 MAKEOVERRIDES=
397
398 tags etags: TAGS
399
400 TAGS: force
401         etags --regex '/^\/[*] TAGS: .*/' *.c *.h
402
403 clean: $(SIM_EXTRA_CLEAN)
404         rm -f *.[oa] *~ core
405         rm -f run libsim.a
406         rm -f gentmap targ-map.c targ-vals.h
407         rm -f $(BUILT_SRC_FROM_COMMON)
408
409 distclean mostlyclean maintainer-clean realclean: clean
410         rm -f TAGS
411         rm -f Makefile config.cache config.log config.status .gdbinit
412         rm -f tconfig.h config.h stamp-h
413         rm -f targ-vals.def
414
415 .c.o:
416         $(CC) -c $(ALL_CFLAGS) $<
417
418 # Dummy target to force execution of dependent targets.
419 force:
420
421 Makefile: Makefile.in $(srcdir)/../common/Make-common.in config.status
422         CONFIG_HEADERS= $(SHELL) ./config.status
423
424 config.status: configure
425         $(SHELL) ./config.status --recheck
426
427 config.h: stamp-h ; @true
428 stamp-h: config.in config.status
429         CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
430
431 .gdbinit: config.status $(srcdir)/../common/gdbinit.in
432         CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
433
434 ## End COMMON_POST_CONFIG_FRAG