e3e12395c6ecfb009af2f5fae88e5a861e484f12
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
1 # Makefile fragment for common parts of all simulators.
2 # Copyright 1997, 1998, 1999, 2000, 2001 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 srccom = $(srcdir)/../common
41 srcroot = $(srcdir)/../..
42
43 prefix = @prefix@
44 exec_prefix = @exec_prefix@
45
46 host_alias = @host_alias@
47 target_alias = @target_alias@
48 program_transform_name = @program_transform_name@
49 bindir = @bindir@
50
51 libdir = @libdir@
52 tooldir = $(libdir)/$(target_alias)
53
54 datadir = @datadir@
55 mandir = @mandir@
56 man1dir = $(mandir)/man1
57 infodir = @infodir@
58 includedir = @includedir@
59
60 # This can be referenced by the gettext configuration code.
61 top_builddir = ..
62
63 EXEEXT = @EXEEXT@
64 SHELL = @SHELL@
65
66 INSTALL = @INSTALL@
67 INSTALL_PROGRAM = @INSTALL_PROGRAM@
68 INSTALL_DATA = @INSTALL_DATA@
69
70 CC = @CC@
71 CC_FOR_BUILD = @CC_FOR_BUILD@
72 CFLAGS = @CFLAGS@
73 SIM_BSWAP = @sim_bswap@
74 SIM_CFLAGS = @sim_cflags@
75 SIM_DEBUG = @sim_debug@
76 SIM_TRACE = @sim_trace@
77 SIM_PROFILE = @sim_profile@
78
79 SIM_ASSERT = @sim_assert@
80 SIM_ALIGNMENT = @sim_alignment@
81 SIM_BITSIZE = @sim_bitsize@
82 SIM_DEFAULT_MODEL = @sim_default_model@
83 SIM_ENDIAN = @sim_endian@
84 SIM_ENVIRONMENT = @sim_environment@
85 SIM_FLOAT = @sim_float@
86 SIM_HW_CFLAGS = @sim_hw_cflags@
87 SIM_HW_OBJS = @sim_hw_objs@
88 SIM_HW = @sim_hw@
89 SIM_HOSTENDIAN = @sim_hostendian@
90 SIM_INLINE = @sim_inline@
91 SIM_PACKAGES = @sim_packages@
92 SIM_REGPARM = @sim_regparm@
93 SIM_RESERVED_BITS = @sim_reserved_bits@
94 SIM_SCACHE = @sim_scache@
95 SIM_SMP = @sim_smp@
96 SIM_STDCALL = @sim_stdcall@
97 SIM_XOR_ENDIAN = @sim_xor_endian@
98 WARN_CFLAGS = @WARN_CFLAGS@
99 WERROR_CFLAGS = @WERROR_CFLAGS@
100 SIM_WARN_CFLAGS = $(WARN_CFLAGS)
101 SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
102
103 HDEFINES = @HDEFINES@
104 TDEFINES =
105
106 AR = @AR@
107 AR_FLAGS = rc
108 RANLIB = @RANLIB@
109 MAKEINFO = makeinfo
110
111 DEP = $(srcroot)/mkdep
112
113 # Each simulator's Makefile.in defines one or more of these variables
114 # to override our settings as necessary. There is no need to define these
115 # in the simulator's Makefile.in if one is using the default value. In fact
116 # it's preferable not to.
117
118 # List of object files, less common parts.
119 SIM_OBJS =
120 # List of extra dependencies.
121 # Generally this consists of simulator specific files included by sim-main.h.
122 SIM_EXTRA_DEPS =
123 # List of flags to always pass to $(CC).
124 SIM_EXTRA_CFLAGS =
125 # List of extra libraries to link with.
126 SIM_EXTRA_LIBS =
127 # List of extra program dependencies.
128 SIM_EXTRA_LIBDEPS =
129 # List of main object files for `run'.
130 SIM_RUN_OBJS = run.o
131 # Dependency of `all' to build any extra files.
132 SIM_EXTRA_ALL =
133 # Dependency of `install' to install any extra files.
134 SIM_EXTRA_INSTALL =
135 # Dependency of `clean' to clean any extra files.
136 SIM_EXTRA_CLEAN =
137 # Likewise `distclean'
138 SIM_EXTRA_DISTCLEAN =
139
140 # Every time a new general purpose source file was added every target's
141 # Makefile.in needed to be updated to include the file in SIM_OBJS.
142 # This doesn't scale.
143 # This variable specifies all the generic stuff common to the newer simulators.
144 # Things like sim-reason.o can't go here as the cpu may provide its own
145 # (though hopefully in time that won't be so). Things like sim-bits.o can go
146 # here. Some files are used by all simulators (e.g. callback.o).
147 # Those files are specified in LIB_OBJS below.
148
149 SIM_COMMON_HW_OBJS = \
150 hw-alloc.o \
151 hw-base.o \
152 hw-device.o \
153 hw-events.o \
154 hw-handles.o \
155 hw-instances.o \
156 hw-ports.o \
157 hw-properties.o \
158 hw-tree.o \
159 sim-hw.o \
160
161 SIM_NEW_COMMON_OBJS = \
162 sim-arange.o \
163 sim-bits.o \
164 sim-break.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) $(INTLLIBS) $(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 .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: $(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 $(srccom)/sim-assert.h \
303 $(srccom)/sim-base.h \
304 $(srccom)/sim-basics.h \
305 $(srccom)/sim-config.h \
306 $(srccom)/sim-cpu.h \
307 $(srccom)/sim-engine.h \
308 $(srccom)/sim-events.h \
309 $(srccom)/sim-inline.h \
310 $(srccom)/sim-memopt.h \
311 $(srccom)/sim-model.h \
312 $(srccom)/sim-module.h \
313 $(srccom)/sim-profile.h \
314 $(srccom)/sim-signal.h \
315 $(srccom)/sim-trace.h \
316 $(srccom)/sim-watch.h \
317 tconfig.h \
318 $(SIM_EXTRA_DEPS)
319
320 # Exported version of sim_main_headers.
321 SIM_MAIN_DEPS = \
322 $(sim_main_headers)
323
324 sim-assert_h = $(srccom)/sim-assert.h
325 sim-endian_h = $(srccom)/sim-endian.h
326 sim-n-endian_h = $(srccom)/sim-n-endian.h
327 sim-arange_h = $(srccom)/sim-arange.h
328 sim-bits_h = $(srccom)/sim-bits.h
329 sim-config_h = $(srccom)/sim-config.h
330 sim-n-bits_h = $(srccom)/sim-n-bits.h
331 sim-core_h = $(srccom)/sim-core.h
332 sim-n-core_h = $(srccom)/sim-n-core.h
333 sim-engine_h = $(srccom)/sim-engine.h
334 sim-events_h = $(srccom)/sim-events.h
335 sim-fpu_h = $(srccom)/sim-fpu.h
336 sim-io_h = $(srccom)/sim-io.h
337 sim-options_h = $(srccom)/sim-options.h
338 sim-break_h = $(srccom)/sim-break.h
339 sim-signal_h = $(srccom)/sim-signal.h
340
341 hw-alloc_h = $(srccom)/hw-alloc.h
342 hw-base_h = $(srccom)/hw-base.h
343 hw-device_h = $(srccom)/hw-device.h
344 hw-events_h = $(srccom)/hw-events.h
345 hw-handles_h = $(srccom)/hw-handles.h
346 hw-instances_h = $(srccom)/hw-instances.h
347 hw-ports_h = $(srccom)/hw-ports.h
348 hw-properties_h = $(srccom)/hw-properties.h
349 hw-tree_h = $(srccom)/hw-tree.h
350
351 hw_main_headers = \
352 $(srccom)/hw-main.h \
353 $(hw-alloc_h) \
354 $(hw-base_h) \
355 $(hw-device_h) \
356 $(hw-events_h) \
357 $(hw-instances_h) \
358 $(hw-handles_h) \
359 $(hw-ports_h) \
360 $(hw-properties_h) \
361
362 # FIXME: If this complicated way of building .o files from ../common is
363 # necessary, the reason should be documented here.
364
365 BUILT_SRC_FROM_COMMON= \
366 sim-inline.c
367
368 sim-abort.o: $(srccom)/sim-abort.c \
369 $(SIM_EXTRA_DEPS)
370 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
371
372 sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
373 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
374
375 sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
376 $(SIM_EXTRA_DEPS)
377 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
378
379 sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
380 $(SIM_EXTRA_DEPS)
381 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
382
383 sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
384 $(sim-core_h) $(sim-n-core_h)
385 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
386
387 sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
388 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
389
390 sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
391 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
392
393 sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
394 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
395
396 sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
397 $(SIM_EXTRA_DEPS)
398 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
399
400 sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
401 $(SIM_EXTRA_DEPS)
402 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
403
404 sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
405 $(SIM_EXTRA_DEPS)
406 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
407
408 sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
409 $(SIM_EXTRA_DEPS)
410 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
411
412 sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
413 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
414
415 sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
416 $(SIM_EXTRA_DEPS)
417 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
418
419 sim-inline.c: $(srccom)/sim-inline.c
420 rm -f $@ tmp-$@
421 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
422 cat $(srccom)/$@ >> tmp-$@
423 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
424
425 sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
426 targ-vals.h
427 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
428
429 sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
430 $(sim-io_h)
431 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
432
433 sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
434 $(sim-io_h)
435 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
436
437 sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
438 $(sim-options_h) $(sim-io_h)
439 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
440
441 sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
442 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
443
444 sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
445 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
446
447 sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
448 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
449
450 sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
451 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
452
453 sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
454 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
455
456 sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
457 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
458
459 sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
460 $(sim-options_h) $(sim-io_h)
461 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
462
463 sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
464 $(sim-options_h) $(sim-io_h)
465 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
466
467 sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
468 $(sim-io_h)
469 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
470
471 sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
472 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
473
474 sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
475 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
476
477 sim-load.o: $(srccom)/sim-load.c $(callback_h)
478 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
479
480 sim-break.o: $(srccom)/sim-break.c $(sim_main_headers) \
481 $(sim_break_h)
482 $(CC) -c $(srccom)/sim-break.c $(ALL_CFLAGS)
483
484
485 # FIXME This is one very simple-minded way of generating the file hw-config.h
486 hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
487 rm -f tmp-hw.h
488 echo "/* generated by Makefile */" > tmp-hw.h
489 for hw in $(SIM_HW) ; do \
490 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
491 done >> tmp-hw.h
492 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
493 for hw in $(SIM_HW) ; do \
494 echo " dv_$${hw}_descriptor," ; \
495 done >> tmp-hw.h
496 echo " NULL," >> tmp-hw.h
497 echo "};" >> tmp-hw.h
498 mv tmp-hw.h hw-config.h
499
500 hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
501 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
502
503 hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
504 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
505
506 hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
507 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
508
509 hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
510 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
511
512 test-hw-events: $(srccom)/hw-events.c libsim.a
513 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
514 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
515
516 hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
517 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
518
519 hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
520 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
521
522 hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
523 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
524
525 hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
526 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
527
528 hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
529 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
530
531 # Devices.
532
533 dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
534 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
535
536 dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
537 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
538
539 dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
540 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
541
542 dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
543 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
544
545
546 nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
547 $(sim_main_headers)
548 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
549
550 # CGEN support.
551
552 # For use in Makefile.in for cpu-specific files.
553 CGEN_MAIN_CPU_DEPS = \
554 $(SIM_MAIN_DEPS) \
555 $(CGEN_INCLUDE_DEPS) \
556 $(srccom)/cgen-ops.h \
557 $(srccom)/cgen-mem.h \
558 $(srccom)/cgen-par.h \
559 $(srccom)/cgen-fpu.h
560
561 cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
562 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
563
564 cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
565 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
566
567 cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
568 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
569
570 cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
571 $(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
572
573 cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
574 $(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
575
576 cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
577 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
578 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
579
580 cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
581 $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
582 $(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
583
584 # Support targets.
585
586 install: install-common $(SIM_EXTRA_INSTALL)
587
588 install-common: installdirs
589 n=`echo run | sed '$(program_transform_name)'`; \
590 $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n$(EXEEXT)
591 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
592 $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
593 ( cd $(libdir) ; $(RANLIB) $$n )
594
595 installdirs:
596 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
597 $(SHELL) $(srcdir)/../../mkinstalldirs $(libdir)
598
599 check:
600 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
601
602 info:
603 clean-info:
604 install-info:
605
606 .NOEXPORT:
607 MAKEOVERRIDES=
608
609 tags etags: TAGS
610
611 # Macros like EXTERN_SIM_CORE confuse tags.
612 # And the sim-n-foo.h files create functions that can't be found either.
613 TAGS: force
614 cd $(srcdir) && \
615 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
616 *.[ch] ../common/*.[ch]
617
618 clean: $(SIM_EXTRA_CLEAN)
619 rm -f *.[oa] *~ core
620 rm -f run libsim.a
621 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
622 if [ ! -f Make-common.in ] ; then \
623 rm -f $(BUILT_SRC_FROM_COMMON) ; \
624 fi
625 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
626
627 distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
628 rm -f TAGS
629 rm -f Makefile config.cache config.log config.status .gdbinit
630 rm -f tconfig.h config.h stamp-h
631 rm -f targ-vals.def
632
633 .c.o:
634 $(CC) -c $(ALL_CFLAGS) $<
635
636 # Dummy target to force execution of dependent targets.
637 force:
638
639 Makefile: Makefile.in $(srccom)/Make-common.in config.status
640 CONFIG_HEADERS= $(SHELL) ./config.status
641
642 config.status: configure
643 $(SHELL) ./config.status --recheck
644
645 config.h: stamp-h ; @true
646 stamp-h: config.in config.status
647 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
648
649 .gdbinit: # config.status $(srccom)/gdbinit.in
650 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
651
652
653 # CGEN support
654
655 CGENDIR = @cgendir@
656 CGEN = `if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi`
657 CGENFLAGS = -v
658 CGEN_CPU_DIR = $(CGENDIR)/cpu
659
660 CGEN_READ_SCM = $(CGENDIR)/sim.scm
661 CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
662 CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
663 CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
664 CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
665
666 # Various choices for which cpu specific files to generate.
667 CGEN_CPU_EXTR = -E tmp-ext.c1
668 CGEN_CPU_READ = -R tmp-read.c1
669 CGEN_CPU_WRITE = -W tmp-write.c1
670 CGEN_CPU_SEM = -S tmp-sem.c1
671 CGEN_CPU_SEMSW = -X tmp-semsw.c1
672
673 CGEN_FLAGS_TO_PASS = \
674 CGEN=$(CGEN) \
675 CGENFLAGS="$(CGENFLAGS)"
676
677 # We store the generated files in the source directory until we decide to
678 # ship a Scheme interpreter with gdb/binutils. Maybe we never will.
679
680 cgen-arch: force
681 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
682 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
683 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored ignored
684
685 cgen-cpu: force
686 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
687 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
688 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
689
690 cgen-defs: force
691 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
692 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
693 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" ignored
694
695 cgen-decode: force
696 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
697 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
698 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
699
700 cgen-cpu-decode: force
701 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
702 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
703 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
704
705 cgen-desc: force
706 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
707 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
708 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" ignored
709
710 ## End COMMON_POST_CONFIG_FRAG
This page took 0.044069 seconds and 4 git commands to generate.