]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/common/Make-common.in
* Make-common.in (LIBDEPS): Correctly use INTLDEPS for dependency
[thirdparty/binutils-gdb.git] / sim / common / Make-common.in
1 # Makefile fragment for common parts of all simulators.
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2004, 2005
3 # Free Software Foundation, Inc.
4 # Contributed by Cygnus Support.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 # This Makefile fragment consists of two separate parts.
21 # They are merged into the final Makefile at points denoted by
22 # "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
23 #
24 # The target Makefile should look like:
25 #
26 #># Copyright blah blah
27 #>
28 #>## COMMON_PRE_CONFIG_FRAG
29 #>
30 #># Any overrides necessary for the SIM_FOO config vars.
31 #>SIM_FOO = ...
32 #>
33 #>## COMMON_POST_CONFIG_FRAG
34 #>
35 #># Rules to build target specific .o's.
36
37 ## COMMON_PRE_CONFIG_FRAG
38
39 VPATH = @srcdir@
40 srcdir = @srcdir@
41 srccom = $(srcdir)/../common
42 srcroot = $(srcdir)/../..
43
44 prefix = @prefix@
45 exec_prefix = @exec_prefix@
46
47 host_alias = @host_alias@
48 target_alias = @target_alias@
49 program_transform_name = @program_transform_name@
50 bindir = @bindir@
51
52 libdir = @libdir@
53 tooldir = $(libdir)/$(target_alias)
54
55 datadir = @datadir@
56 mandir = @mandir@
57 man1dir = $(mandir)/man1
58 infodir = @infodir@
59 includedir = @includedir@
60
61 # This can be referenced by the gettext configuration code.
62 top_builddir = ..
63
64 EXEEXT = @EXEEXT@
65 SHELL = @SHELL@
66
67 INSTALL = @INSTALL@
68 INSTALL_PROGRAM = @INSTALL_PROGRAM@
69 INSTALL_DATA = @INSTALL_DATA@
70
71 CC = @CC@
72 CC_FOR_BUILD = @CC_FOR_BUILD@
73 CFLAGS = @CFLAGS@
74 SIM_BSWAP = @sim_bswap@
75 SIM_CFLAGS = @sim_cflags@
76 SIM_DEBUG = @sim_debug@
77 SIM_TRACE = @sim_trace@
78 SIM_PROFILE = @sim_profile@
79
80 SIM_ASSERT = @sim_assert@
81 SIM_ALIGNMENT = @sim_alignment@
82 SIM_BITSIZE = @sim_bitsize@
83 SIM_DEFAULT_MODEL = @sim_default_model@
84 SIM_ENDIAN = @sim_endian@
85 SIM_ENVIRONMENT = @sim_environment@
86 SIM_FLOAT = @sim_float@
87 SIM_HW_CFLAGS = @sim_hw_cflags@
88 SIM_HW_OBJS = @sim_hw_objs@
89 SIM_HW = @sim_hw@
90 SIM_HOSTENDIAN = @sim_hostendian@
91 SIM_INLINE = @sim_inline@
92 SIM_PACKAGES = @sim_packages@
93 SIM_REGPARM = @sim_regparm@
94 SIM_RESERVED_BITS = @sim_reserved_bits@
95 SIM_SCACHE = @sim_scache@
96 SIM_SMP = @sim_smp@
97 SIM_STDCALL = @sim_stdcall@
98 SIM_XOR_ENDIAN = @sim_xor_endian@
99 WARN_CFLAGS = @WARN_CFLAGS@
100 WERROR_CFLAGS = @WERROR_CFLAGS@
101 SIM_WARN_CFLAGS = $(WARN_CFLAGS)
102 SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
103
104 HDEFINES = @HDEFINES@
105 TDEFINES =
106
107 AR = @AR@
108 AR_FLAGS = rc
109 RANLIB = @RANLIB@
110 MAKEINFO = makeinfo
111
112 DEP = $(srcroot)/mkdep
113
114 # Each simulator's Makefile.in defines one or more of these variables
115 # to override our settings as necessary. There is no need to define these
116 # in the simulator's Makefile.in if one is using the default value. In fact
117 # it's preferable not to.
118
119 # List of object files, less common parts.
120 SIM_OBJS =
121 # List of extra dependencies.
122 # Generally this consists of simulator specific files included by sim-main.h.
123 SIM_EXTRA_DEPS =
124 # List of flags to always pass to $(CC).
125 SIM_EXTRA_CFLAGS =
126 # List of extra libraries to link with.
127 SIM_EXTRA_LIBS =
128 # List of extra program dependencies.
129 SIM_EXTRA_LIBDEPS =
130 # List of main object files for `run'.
131 SIM_RUN_OBJS = run.o
132 # Dependency of `all' to build any extra files.
133 SIM_EXTRA_ALL =
134 # Dependency of `install' to install any extra files.
135 SIM_EXTRA_INSTALL =
136 # Dependency of `clean' to clean any extra files.
137 SIM_EXTRA_CLEAN =
138 # Likewise `distclean'
139 SIM_EXTRA_DISTCLEAN =
140
141 # Every time a new general purpose source file was added every target's
142 # Makefile.in needed to be updated to include the file in SIM_OBJS.
143 # This doesn't scale.
144 # This variable specifies all the generic stuff common to the newer simulators.
145 # Things like sim-reason.o can't go here as the cpu may provide its own
146 # (though hopefully in time that won't be so). Things like sim-bits.o can go
147 # here. Some files are used by all simulators (e.g. callback.o).
148 # Those files are specified in LIB_OBJS below.
149
150 SIM_COMMON_HW_OBJS = \
151 hw-alloc.o \
152 hw-base.o \
153 hw-device.o \
154 hw-events.o \
155 hw-handles.o \
156 hw-instances.o \
157 hw-ports.o \
158 hw-properties.o \
159 hw-tree.o \
160 sim-hw.o \
161
162 SIM_NEW_COMMON_OBJS = \
163 sim-arange.o \
164 sim-bits.o \
165 sim-config.o \
166 sim-core.o \
167 sim-endian.o \
168 sim-events.o \
169 sim-fpu.o \
170 sim-io.o \
171 sim-info.o \
172 sim-load.o \
173 sim-memopt.o \
174 sim-module.o \
175 sim-options.o \
176 sim-profile.o \
177 sim-signal.o \
178 sim-trace.o \
179 sim-utils.o \
180 sim-watch.o \
181 \
182 $(SIM_HW_OBJS) \
183
184 # Add this to SIM_EXTRA_DEPS.
185 CGEN_INCLUDE_DEPS = \
186 $(srccom)/cgen-cpu.h \
187 $(srccom)/cgen-defs.h \
188 $(srccom)/cgen-engine.h \
189 $(srccom)/cgen-scache.h \
190 $(srccom)/cgen-sim.h \
191 $(srccom)/cgen-trace.h \
192 $(srccom)/cgen-types.h \
193 $(srcdir)/../../include/opcode/cgen.h
194
195 ## End COMMON_PRE_CONFIG_FRAG
196
197 ## COMMON_POST_CONFIG_FRAG
198
199 CONFIG_CFLAGS = \
200 @DEFS@ \
201 $(SIM_CFLAGS) \
202 $(SIM_DEBUG) \
203 $(SIM_DEFAULT_MODEL) \
204 $(SIM_TRACE) \
205 $(SIM_PROFILE) \
206 $(SIM_BSWAP) \
207 $(SIM_ASSERT) \
208 $(SIM_ALIGNMENT) \
209 $(SIM_BITSIZE) \
210 $(SIM_ENDIAN) \
211 $(SIM_ENVIRONMENT) \
212 $(SIM_FLOAT) \
213 $(SIM_HW_CFLAGS) \
214 $(SIM_HOSTENDIAN) \
215 $(SIM_INLINE) \
216 $(SIM_PACKAGES) \
217 $(SIM_REGPARM) \
218 $(SIM_RESERVED_BITS) \
219 $(SIM_SCACHE) \
220 $(SIM_SMP) \
221 $(SIM_STDCALL) \
222 $(SIM_WARN_CFLAGS) \
223 $(SIM_WERROR_CFLAGS) \
224 $(SIM_XOR_ENDIAN) \
225 $(SIM_HARDWARE) \
226 $(SIM_EXTRA_CFLAGS) \
227 $(HDEFINES) $(TDEFINES)
228 CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
229 -I../../include -I$(srcroot)/include \
230 -I../../bfd -I$(srcroot)/bfd \
231 -I../../opcodes -I$(srcroot)/opcodes \
232 -I../../intl -I$(srcroot)/intl
233 ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
234 BUILD_CFLAGS = -g -O $(CSEARCH)
235
236 COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
237
238 LIBIBERTY_LIB = ../../libiberty/libiberty.a
239 BFD_LIB = ../../bfd/libbfd.a
240 OPCODES_LIB = ../../opcodes/libopcodes.a
241 INTLLIBS = @INTLLIBS@
242 INTLDEPS = @INTLDEPS@
243 CONFIG_LIBS = @LIBS@
244 LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLDEPS) $(LIBIBERTY_LIB) \
245 $(SIM_EXTRA_LIBDEPS)
246 EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
247 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
248
249 LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
250
251 RUNTESTFLAGS =
252
253 callback_h = $(srcroot)/include/gdb/callback.h
254 remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
255
256 all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
257
258 libsim.a: $(LIB_OBJS)
259 rm -f libsim.a
260 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
261 $(RANLIB) libsim.a
262
263 run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
264 $(CC) $(ALL_CFLAGS) -o run$(EXEEXT) \
265 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
266
267 run.o: $(srccom)/run.c config.h tconfig.h $(remote_sim_h) $(callback_h)
268 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
269
270 # FIXME: Ideally, callback.o and friends live in a library outside of
271 # both the gdb and simulator source trees (e.g. devo/remote. Not
272 # devo/libremote because this directory would contain more than just
273 # a library).
274
275 callback.o: $(srccom)/callback.c config.h tconfig.h $(callback_h) targ-vals.h
276 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
277
278 syscall.o: $(srccom)/syscall.c config.h tconfig.h $(callback_h) targ-vals.h
279 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
280
281 targ-map.o: targ-map.c targ-vals.h
282
283 gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
284 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
285
286 targ-vals.h targ-map.c: stamp-tvals
287 stamp-tvals: gentmap
288 rm -f tmp-tvals.h tmp-tmap.c
289 ./gentmap -h >tmp-tvals.h
290 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
291 ./gentmap -c >tmp-tmap.c
292 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
293 touch stamp-tvals
294
295 #
296 # Rules for building sim-* components. Triggered by listing the corresponding
297 # .o file in the list of simulator targets.
298 #
299
300 sim_main_headers = \
301 sim-main.h \
302 $(sim-assert_h) \
303 $(sim-base_h) \
304 $(sim-cpu_h) \
305 $(sim-engine_h) \
306 $(sim-events_h) \
307 $(sim-memopt_h) \
308 $(sim-model_h) \
309 $(sim-module_h) \
310 $(sim-profile_h) \
311 $(sim-trace_h) \
312 $(sim-watch_h) \
313 $(sim-basics_h) \
314 $(SIM_EXTRA_DEPS)
315
316 # Exported version of sim_main_headers.
317 SIM_MAIN_DEPS = \
318 $(sim_main_headers)
319
320 sim-alu_h = $(srccom)/sim-alu.h
321 sim-arange_h = $(srccom)/sim-arange.h \
322 $(srccom)/sim-arange.c
323 sim-assert_h = $(srccom)/sim-assert.h
324 sim-base_h = $(srccom)/sim-base.h \
325 $(sim-module_h) \
326 $(sim-trace_h) \
327 $(sim-core_h) \
328 $(sim-events_h) \
329 $(sim-profile_h) \
330 $(sim-model_h) \
331 $(sim-io_h) \
332 $(sim-engine_h) \
333 $(sim-watch_h) \
334 $(sim-memopt_h) \
335 $(sim-cpu_h)
336 sim-basics_h = $(srccom)/sim-basics.h \
337 ../common/cconfig.h \
338 tconfig.h \
339 $(sim-config_h) \
340 $(callback_h) \
341 $(sim-inline_h) \
342 $(sim-types_h) \
343 $(sim-bits_h) \
344 $(sim-endian_h) \
345 $(sim-signal_h) \
346 $(sim-arange_h) \
347 $(sim-utils_h)
348 sim-bits_h = $(srccom)/sim-bits.h \
349 $(srccom)/sim-bits.c
350 sim-config_h = $(srccom)/sim-config.h
351 sim-core_h = $(srccom)/sim-core.h
352 sim-cpu_h = $(srccom)/sim-cpu.h
353 sim-endian_h = $(srccom)/sim-endian.h \
354 $(srccom)/sim-endian.c
355 sim-engine_h = $(srccom)/sim-engine.h
356 sim-events_h = $(srccom)/sim-events.h
357 sim-fpu_h = $(srccom)/sim-fpu.h
358 sim-hw_h = $(srccom)/sim-hw.h
359 sim-inline_h = $(srccom)/sim-inline.h
360 sim-io_h = $(srccom)/sim-io.h
361 sim-memopt_h = $(srccom)/sim-memopt.h
362 sim-model_h = $(srccom)/sim-model.h
363 sim-module_h = $(srccom)/sim-module.h
364 sim-n-bits_h = $(srccom)/sim-n-bits.h
365 sim-n-core_h = $(srccom)/sim-n-core.h
366 sim-n-endian_h = $(srccom)/sim-n-endian.h
367 sim-options_h = $(srccom)/sim-options.h
368 sim-profile_h = $(srccom)/sim-profile.h
369 sim-signal_h = $(srccom)/sim-signal.h
370 sim-trace_h = $(srccom)/sim-trace.h
371 sim-types_h = $(srccom)/sim-types.h
372 sim-utils_h = $(srccom)/sim-utils.h
373 sim-watch_h = $(srccom)/sim-watch.h
374
375 hw-alloc_h = $(srccom)/hw-alloc.h
376 hw-base_h = $(srccom)/hw-base.h
377 hw-device_h = $(srccom)/hw-device.h
378 hw-events_h = $(srccom)/hw-events.h
379 hw-handles_h = $(srccom)/hw-handles.h
380 hw-instances_h = $(srccom)/hw-instances.h
381 hw-ports_h = $(srccom)/hw-ports.h
382 hw-properties_h = $(srccom)/hw-properties.h
383 hw-tree_h = $(srccom)/hw-tree.h
384
385 hw_main_headers = \
386 $(srccom)/hw-main.h \
387 $(hw-alloc_h) \
388 $(hw-base_h) \
389 $(hw-device_h) \
390 $(hw-events_h) \
391 $(hw-instances_h) \
392 $(hw-handles_h) \
393 $(hw-ports_h) \
394 $(hw-properties_h) \
395
396 # FIXME: If this complicated way of building .o files from ../common is
397 # necessary, the reason should be documented here.
398
399 BUILT_SRC_FROM_COMMON= \
400 sim-inline.c
401
402 sim-abort.o: $(srccom)/sim-abort.c \
403 $(SIM_EXTRA_DEPS)
404 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
405
406 sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
407 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
408
409 sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
410 $(SIM_EXTRA_DEPS)
411 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
412
413 sim-config.o: $(srccom)/sim-config.c $(sim-config_h) sim-main.h \
414 $(SIM_EXTRA_DEPS)
415 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
416
417 sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
418 $(sim-core_h) $(sim-n-core_h)
419 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
420
421 sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
422 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
423
424 sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
425 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
426
427 sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
428 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
429
430 sim-events.o: $(srccom)/sim-events.c $(sim-events_h) sim-main.h \
431 $(SIM_EXTRA_DEPS)
432 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
433
434 sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
435 $(SIM_EXTRA_DEPS)
436 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
437
438 sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
439 $(SIM_EXTRA_DEPS)
440 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
441
442 sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
443 $(SIM_EXTRA_DEPS)
444 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
445
446 sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
447 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
448
449 sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
450 $(SIM_EXTRA_DEPS)
451 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
452
453 sim-inline.c: $(srccom)/sim-inline.c
454 rm -f $@ tmp-$@
455 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
456 cat $(srccom)/$@ >> tmp-$@
457 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
458
459 sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
460 targ-vals.h
461 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
462
463 sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
464 $(sim-io_h)
465 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
466
467 sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
468 $(sim-io_h)
469 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
470
471 sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
472 $(sim-options_h) $(sim-io_h)
473 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
474
475 sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
476 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
477
478 sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
479 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
480
481 sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
482 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
483
484 sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
485 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
486
487 sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
488 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
489
490 sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
491 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
492
493 sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
494 $(sim-options_h) $(sim-io_h)
495 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
496
497 sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
498 $(sim-options_h) $(sim-io_h)
499 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
500
501 sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
502 $(sim-io_h)
503 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
504
505 sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
506 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
507
508 sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
509 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
510
511 sim-load.o: $(srccom)/sim-load.c $(callback_h) $(sim-basics_h) $(remote_sim_h)
512 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
513
514
515 # FIXME This is one very simple-minded way of generating the file hw-config.h
516 hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
517 rm -f tmp-hw.h
518 echo "/* generated by Makefile */" > tmp-hw.h
519 for hw in $(SIM_HW) ; do \
520 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
521 done >> tmp-hw.h
522 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
523 for hw in $(SIM_HW) ; do \
524 echo " dv_$${hw}_descriptor," ; \
525 done >> tmp-hw.h
526 echo " NULL," >> tmp-hw.h
527 echo "};" >> tmp-hw.h
528 mv tmp-hw.h hw-config.h
529
530 hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
531 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
532
533 hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
534 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
535
536 hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
537 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
538
539 hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
540 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
541
542 test-hw-events: $(srccom)/hw-events.c libsim.a
543 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
544 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
545
546 hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
547 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
548
549 hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
550 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
551
552 hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
553 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
554
555 hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
556 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
557
558 hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
559 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
560
561 # Devices.
562
563 dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
564 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
565
566 dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
567 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
568
569 dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
570 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
571
572 dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
573 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
574
575
576 nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
577 $(sim_main_headers)
578 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
579
580 # CGEN support.
581
582 # For use in Makefile.in for cpu-specific files.
583 CGEN_MAIN_CPU_DEPS = \
584 $(SIM_MAIN_DEPS) \
585 $(CGEN_INCLUDE_DEPS) \
586 $(srccom)/cgen-ops.h \
587 $(srccom)/cgen-mem.h \
588 $(srccom)/cgen-par.h \
589 $(srccom)/cgen-fpu.h
590
591 cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
592 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
593
594 cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
595 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
596
597 cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
598 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
599
600 cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
601 $(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
602
603 cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
604 $(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
605
606 cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
607 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
608 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
609
610 cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
611 $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
612 $(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
613
614 # Support targets.
615
616 install: install-common $(SIM_EXTRA_INSTALL)
617
618 install-common: installdirs
619 n=`echo run | sed '$(program_transform_name)'`; \
620 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
621 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
622 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
623 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
624
625 installdirs:
626 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
627 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
628
629 check:
630 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
631
632 info:
633 clean-info:
634 install-info:
635
636 .NOEXPORT:
637 MAKEOVERRIDES=
638
639 tags etags: TAGS
640
641 # Macros like EXTERN_SIM_CORE confuse tags.
642 # And the sim-n-foo.h files create functions that can't be found either.
643 TAGS: force
644 cd $(srcdir) && \
645 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
646 *.[ch] ../common/*.[ch]
647
648 clean: $(SIM_EXTRA_CLEAN)
649 rm -f *.[oa] *~ core
650 rm -f run$(EXEEXT) libsim.a
651 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
652 if [ ! -f Make-common.in ] ; then \
653 rm -f $(BUILT_SRC_FROM_COMMON) ; \
654 fi
655 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
656
657 distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
658 rm -f TAGS
659 rm -f Makefile config.cache config.log config.status .gdbinit
660 rm -f tconfig.h config.h stamp-h
661 rm -f targ-vals.def
662
663 .c.o:
664 $(CC) -c $(ALL_CFLAGS) $<
665
666 # Dummy target to force execution of dependent targets.
667 force:
668
669 Makefile: Makefile.in $(srccom)/Make-common.in config.status
670 CONFIG_HEADERS= $(SHELL) ./config.status
671
672 config.status: configure
673 $(SHELL) ./config.status --recheck
674
675 config.h: stamp-h ; @true
676 stamp-h: config.in config.status
677 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
678
679 .gdbinit: # config.status $(srccom)/gdbinit.in
680 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
681
682
683 # CGEN support
684
685 CGENDIR = @cgendir@
686 CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
687 CGENFLAGS = -v
688 CGEN_CPU_DIR = $(CGENDIR)/cpu
689
690 CGEN_READ_SCM = $(CGENDIR)/sim.scm
691 CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
692 CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
693 CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
694 CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
695
696 # Various choices for which cpu specific files to generate.
697 CGEN_CPU_EXTR = -E tmp-ext.c1
698 CGEN_CPU_READ = -R tmp-read.c1
699 CGEN_CPU_WRITE = -W tmp-write.c1
700 CGEN_CPU_SEM = -S tmp-sem.c1
701 CGEN_CPU_SEMSW = -X tmp-semsw.c1
702
703 CGEN_FLAGS_TO_PASS = \
704 CGEN='$(CGEN)' \
705 CGENFLAGS="$(CGENFLAGS)"
706
707 # We store the generated files in the source directory until we decide to
708 # ship a Scheme interpreter with gdb/binutils. Maybe we never will.
709
710 cgen-arch: force
711 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
712 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
713 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
714 $(archfile) ignored
715
716 cgen-cpu: force
717 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
718 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
719 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
720 $(archfile) "$(EXTRAFILES)"
721
722 cgen-defs: force
723 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
724 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
725 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
726 $(archfile) ignored
727
728 cgen-decode: force
729 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
730 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
731 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
732 $(archfile) "$(EXTRAFILES)"
733
734 cgen-cpu-decode: force
735 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
736 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
737 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
738 $(archfile) "$(EXTRAFILES)"
739
740 cgen-desc: force
741 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
742 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
743 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
744 $(archfile) ignored $(opcfile)
745
746 ## End COMMON_POST_CONFIG_FRAG