Split out hw-alloc code. Add constructor and destructor for hw-alloc.
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
1 # Makefile fragment for common parts of all simulators.
2 # Copyright (C) 1997, 1998 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_WARNINGS = @sim_warnings@
98 SIM_XOR_ENDIAN = @sim_xor_endian@
99
100 HDEFINES = @HDEFINES@
101 TDEFINES =
102
103 AR = @AR@
104 AR_FLAGS = rc
105 RANLIB = @RANLIB@
106 MAKEINFO = makeinfo
107
108 DEP = $(srcroot)/mkdep
109
110 # Each simulator's Makefile.in defines one or more of these variables
111 # to override our settings as necessary. There is no need to define these
112 # in the simulator's Makefile.in if one is using the default value. In fact
113 # it's preferable not to.
114
115 # List of object files, less common parts.
116 SIM_OBJS =
117 # List of extra dependencies.
118 # Generally this consists of simulator specific files included by sim-main.h.
119 SIM_EXTRA_DEPS =
120 # List of flags to always pass to $(CC).
121 SIM_EXTRA_CFLAGS =
122 # List of extra libraries to link with.
123 SIM_EXTRA_LIBS =
124 # List of extra program dependencies.
125 SIM_EXTRA_LIBDEPS =
126 # List of main object files for `run'.
127 SIM_RUN_OBJS = run.o
128 # Dependency of `all' to build any extra files.
129 SIM_EXTRA_ALL =
130 # Dependency of `install' to install any extra files.
131 SIM_EXTRA_INSTALL =
132 # Dependency of `clean' to clean any extra files.
133 SIM_EXTRA_CLEAN =
134
135 # Every time a new general purpose source file was added every target's
136 # Makefile.in needed to be updated to include the file in SIM_OBJS.
137 # This doesn't scale.
138 # This variable specifies all the generic stuff common to the newer simulators.
139 # Things like sim-reason.o can't go here as the cpu may provide its own
140 # (though hopefully in time that won't be so). Things like sim-bits.o can go
141 # here. Some files are used by all simulators (e.g. callback.o).
142 # Those files are specified in LIB_OBJS below.
143
144 SIM_COMMON_HW_OBJS = \
145 hw-alloc.o \
146 hw-device.o \
147 hw-events.o \
148 hw-ports.o \
149 hw-properties.o \
150 hw-base.o \
151 hw-tree.o \
152 sim-hw.o \
153
154 SIM_NEW_COMMON_OBJS = \
155 sim-bits.o \
156 sim-break.o \
157 sim-config.o \
158 sim-core.o \
159 sim-endian.o \
160 sim-events.o \
161 sim-fpu.o \
162 sim-io.o \
163 sim-info.o \
164 sim-load.o \
165 sim-memopt.o \
166 sim-module.o \
167 sim-options.o \
168 sim-profile.o \
169 sim-signal.o \
170 sim-trace.o \
171 sim-utils.o \
172 sim-watch.o \
173 \
174 $(SIM_HW_OBJS) \
175
176
177
178 ## End COMMON_PRE_CONFIG_FRAG
179
180 ## COMMON_POST_CONFIG_FRAG
181
182 CONFIG_CFLAGS = \
183 @DEFS@ \
184 $(SIM_CFLAGS) \
185 $(SIM_DEBUG) \
186 $(SIM_DEFAULT_MODEL) \
187 $(SIM_TRACE) \
188 $(SIM_PROFILE) \
189 $(SIM_BSWAP) \
190 $(SIM_ASSERT) \
191 $(SIM_ALIGNMENT) \
192 $(SIM_BITSIZE) \
193 $(SIM_ENDIAN) \
194 $(SIM_ENVIRONMENT) \
195 $(SIM_FLOAT) \
196 $(SIM_HW_CFLAGS) \
197 $(SIM_HOSTENDIAN) \
198 $(SIM_INLINE) \
199 $(SIM_PACKAGES) \
200 $(SIM_REGPARM) \
201 $(SIM_RESERVED_BITS) \
202 $(SIM_SCACHE) \
203 $(SIM_SMP) \
204 $(SIM_STDCALL) \
205 $(SIM_WARNINGS) \
206 $(SIM_XOR_ENDIAN) \
207 $(SIM_HARDWARE) \
208 $(SIM_EXTRA_CFLAGS) \
209 $(HDEFINES) $(TDEFINES)
210 CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
211 -I../../include -I$(srcroot)/include \
212 -I../../bfd -I$(srcroot)/bfd \
213 -I../../opcodes -I$(srcroot)/opcodes \
214 -I../../intl -I$(srcroot)/intl
215 ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
216 BUILD_CFLAGS = -g -O $(CSEARCH)
217
218 COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
219
220 LIBIBERTY_LIB = ../../libiberty/libiberty.a
221 BFD_LIB = ../../bfd/libbfd.a
222 OPCODES_LIB = ../../opcodes/libopcodes.a
223 INTLLIBS = @INTLLIBS@
224 INTLDEPS = @INTLDEPS@
225 CONFIG_LIBS = @LIBS@
226 LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
227 $(SIM_EXTRA_LIBDEPS)
228 EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
229 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
230
231 LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
232
233 RUNTESTFLAGS =
234
235 all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit
236
237 libsim.a: $(LIB_OBJS)
238 rm -f libsim.a
239 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
240 $(RANLIB) libsim.a
241
242 run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
243 $(CC) $(ALL_CFLAGS) -o run$(EXEEXT) \
244 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
245
246 run.o: $(srccom)/run.c config.h tconfig.h \
247 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h
248 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
249
250 # FIXME: Ideally, callback.o and friends live in a library outside of
251 # both the gdb and simulator source trees (e.g. devo/remote. Not
252 # devo/libremote because this directory would contain more than just
253 # a library).
254
255 callback.o: $(srccom)/callback.c config.h tconfig.h \
256 $(srcroot)/include/callback.h targ-vals.h
257 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
258
259 syscall.o: $(srccom)/syscall.c config.h tconfig.h \
260 $(srcroot)/include/callback.h targ-vals.h
261 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
262
263 targ-map.o: targ-map.c targ-vals.h
264
265 gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
266 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
267
268 targ-vals.h targ-map.c: stamp-tvals
269 stamp-tvals: gentmap
270 rm -f tmp-tvals.h tmp-tmap.c
271 ./gentmap -h >tmp-tvals.h
272 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
273 ./gentmap -c >tmp-tmap.c
274 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
275 touch stamp-tvals
276
277 #
278 # Rules for building sim-* components. Triggered by listing the corresponding
279 # .o file in the list of simulator targets.
280 #
281
282 sim_main_headers = \
283 sim-main.h \
284 $(srccom)/sim-assert.h \
285 $(srccom)/sim-base.h \
286 $(srccom)/sim-basics.h \
287 $(srccom)/sim-config.h \
288 $(srccom)/sim-cpu.h \
289 $(srccom)/sim-engine.h \
290 $(srccom)/sim-events.h \
291 $(srccom)/sim-inline.h \
292 $(srccom)/sim-memopt.h \
293 $(srccom)/sim-model.h \
294 $(srccom)/sim-module.h \
295 $(srccom)/sim-profile.h \
296 $(srccom)/sim-signal.h \
297 $(srccom)/sim-trace.h \
298 $(srccom)/sim-watch.h \
299 tconfig.h \
300 $(SIM_EXTRA_DEPS)
301
302 sim-assert_h = $(srccom)/sim-assert.h
303 sim-endian_h = $(srccom)/sim-endian.h
304 sim-n-endian_h = $(srccom)/sim-n-endian.h
305 sim-bits_h = $(srccom)/sim-bits.h
306 sim-config_h = $(srccom)/sim-config.h
307 sim-n-bits_h = $(srccom)/sim-n-bits.h
308 sim-core_h = $(srccom)/sim-core.h
309 sim-n-core_h = $(srccom)/sim-n-core.h
310 sim-engine_h = $(srccom)/sim-engine.h
311 sim-events_h = $(srccom)/sim-events.h
312 sim-fpu_h = $(srccom)/sim-fpu.h
313 sim-io_h = $(srccom)/sim-io.h
314 sim-options_h = $(srccom)/sim-options.h
315 sim-break_h = $(srccom)/sim-break.h
316 sim-signal_h = $(srccom)/sim-signal.h
317
318 hw-alloc_h = $(srccom)/hw-alloc.h
319 hw-base_h = $(srccom)/hw-base.h
320 hw-device_h = $(srccom)/hw-device.h
321 hw-events_h = $(srccom)/hw-events.h
322 hw-handles_h = #$(srccom)/hw-handles.h
323 hw-instances_h = #$(srccom)/hw-instances.h
324 hw-ports_h = $(srccom)/hw-ports.h
325 hw-properties_h = $(srccom)/hw-properties.h
326 hw-tree_h = $(srccom)/hw-tree.h
327
328 hw_base_headers = \
329 $(hw-alloc_h) \
330 $(hw-base_h) \
331 $(hw-device_h) \
332 $(hw-events_h) \
333 $(hw-instances_h) \
334 $(hw-handles_h) \
335 $(hw-ports_h) \
336 $(hw-properties_h) \
337
338 # FIXME: If this complicated way of building .o files from ../common is
339 # necessary, the reason should be documented here.
340
341 BUILT_SRC_FROM_COMMON= \
342 sim-inline.c
343
344 sim-abort.o: $(srccom)/sim-abort.c \
345 $(SIM_EXTRA_DEPS)
346 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
347
348 sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
349 $(SIM_EXTRA_DEPS)
350 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
351
352 sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
353 $(SIM_EXTRA_DEPS)
354 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
355
356 sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
357 $(sim-core_h) $(sim-n-core_h) \
358 $(SIM_EXTRA_DEPS)
359 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
360
361 sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers) \
362 $(SIM_EXTRA_DEPS)
363 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
364
365 sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h) \
366 $(SIM_EXTRA_DEPS)
367 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
368
369 sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
370 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
371
372 sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
373 $(SIM_EXTRA_DEPS)
374 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
375
376 sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
377 $(SIM_EXTRA_DEPS)
378 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
379
380 sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) \
381 $(srcroot)/include/remote-sim.h \
382 $(SIM_EXTRA_DEPS)
383 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
384
385 sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) \
386 $(srcroot)/include/remote-sim.h \
387 $(SIM_EXTRA_DEPS)
388 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
389
390 sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers) $(SIM_EXTRA_DEPS)
391 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
392
393 sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) \
394 $(srcroot)/include/remote-sim.h \
395 $(SIM_EXTRA_DEPS)
396 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
397
398 sim-inline.c: $(srccom)/sim-inline.c
399 rm -f $@ tmp-$@
400 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
401 cat $(srccom)/$@ >> tmp-$@
402 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
403
404 sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) \
405 $(srcroot)/include/remote-sim.h
406 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
407
408 sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
409 $(sim-io_h)
410 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
411
412 sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
413 $(sim-io_h)
414 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
415
416 sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
417 $(sim-options_h) $(sim-io_h)
418 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
419
420 sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) \
421 $(srcroot)/include/remote-sim.h
422 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
423
424 sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) \
425 $(srcroot)/include/remote-sim.h
426 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
427
428 sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
429 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
430
431 sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
432 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
433
434 sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
435 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
436
437 sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
438 $(sim-options_h) $(sim-io_h)
439 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
440
441 sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
442 $(sim-options_h) $(sim-io_h)
443 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
444
445 sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
446 $(sim-io_h)
447 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
448
449 sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
450 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
451
452 sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
453 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
454
455 sim-load.o: $(srccom)/sim-load.c $(srcroot)/include/callback.h
456 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
457
458 sim-break.o: $(srccom)/sim-break.c $(sim_main_headers) \
459 $(sim_break_h)
460 $(CC) -c $(srccom)/sim-break.c $(ALL_CFLAGS)
461
462
463 # FIXME This is one very simple-minded way of generating the file hw-config.h
464 hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
465 rm -f tmp-hw.h
466 echo "/* generated by Makefile */" > tmp-hw.h
467 for hw in $(SIM_HW) ; do \
468 echo "extern const struct hw_device_descriptor dv_$${hw}_descriptor[];" ; \
469 done >> tmp-hw.h
470 echo "const struct hw_device_descriptor *hw_descriptors[] = {" >> tmp-hw.h
471 for hw in $(SIM_HW) ; do \
472 echo " dv_$${hw}_descriptor," ; \
473 done >> tmp-hw.h
474 echo " NULL," >> tmp-hw.h
475 echo "};" >> tmp-hw.h
476 mv tmp-hw.h hw-config.h
477
478 hw-alloc.o: $(srccom)/hw-alloc.c $(sim_main_headers) \
479 $(hw-alloc_h)
480 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
481
482 hw-base.o: $(srccom)/hw-base.c $(sim_main_headers) \
483 $(hw_base_headers) hw-config.h
484 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
485
486 hw-device.o: $(srccom)/hw-device.c $(sim_main_headers) \
487 $(hw-device_h)
488 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
489
490 hw-events.o: $(srccom)/hw-events.c $(sim_main_headers) \
491 $(hw-events_h)
492 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
493
494 hw-instances.o: $(srccom)/hw-instances.c $(sim_main_headers) \
495 $(hw_base_headers)
496 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
497
498 hw-handles.o: $(srccom)/hw-handles.c $(sim_main_headers) \
499 $(hw_base_headers)
500 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
501
502 hw-ports.o: $(srccom)/hw-ports.c $(sim_main_headers) \
503 $(hw-ports_h)
504 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
505
506 hw-properties.o: $(srccom)/hw-properties.c $(sim_main_headers) \
507 $(hw-properties_h)
508 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
509
510 hw-tree.o: $(srccom)/hw-tree.c $(sim_main_headers) \
511 $(hw-tree_h) $(hw_base_headers)
512 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
513
514
515 dv-core.o: $(srccom)/dv-core.c $(sim_main_headers) \
516 $(sim-main_h) $(hw_base_headers)
517 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
518
519 dv-glue.o: $(srccom)/dv-glue.c $(sim_main_headers) \
520 $(sim-main_h) $(hw_base_headers)
521 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
522
523 dv-pal.o: $(srccom)/dv-pal.c $(sim_main_headers) \
524 $(sim-main_h) $(hw_base_headers)
525 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
526
527
528 nrun.o: $(srccom)/nrun.c config.h tconfig.h \
529 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h \
530 $(sim_main_headers)
531 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
532
533 # Devices.
534
535 dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
536 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
537
538 # CGEN support.
539
540 cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers) \
541 $(srccom)/cgen-sim.h
542 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
543
544 cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers) \
545 $(srccom)/cgen-sim.h $(srccom)/cgen-trace.h
546 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
547
548 cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
549 $(srccom)/cgen-sim.h $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h
550 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
551
552 # Support targets.
553
554 install: install-common $(SIM_EXTRA_INSTALL)
555
556 install-common: installdirs
557 n=`echo run | sed '$(program_transform_name)'`; \
558 $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n
559 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
560 $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
561 ( cd $(libdir) ; $(RANLIB) $$n )
562
563 installdirs:
564 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
565
566 check:
567 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
568
569 info:
570 clean-info:
571 install-info:
572
573 .NOEXPORT:
574 MAKEOVERRIDES=
575
576 tags etags: TAGS
577
578 # Macros like EXTERN_SIM_CORE confuse tags.
579 # And the sim-n-foo.h files create functions that can't be found either.
580 TAGS: force
581 cd $(srcdir) && \
582 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
583 *.[ch] ../common/*.[ch]
584
585 clean: $(SIM_EXTRA_CLEAN)
586 rm -f *.[oa] *~ core
587 rm -f run libsim.a
588 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
589 if [ ! -f Make-common.in ] ; then \
590 rm -f $(BUILT_SRC_FROM_COMMON) ; \
591 fi
592
593 distclean mostlyclean maintainer-clean realclean: clean
594 rm -f TAGS
595 rm -f Makefile config.cache config.log config.status .gdbinit
596 rm -f tconfig.h config.h stamp-h
597 rm -f targ-vals.def
598
599 .c.o:
600 $(CC) -c $(ALL_CFLAGS) $<
601
602 # Dummy target to force execution of dependent targets.
603 force:
604
605 Makefile: Makefile.in $(srccom)/Make-common.in config.status
606 CONFIG_HEADERS= $(SHELL) ./config.status
607
608 config.status: configure
609 $(SHELL) ./config.status --recheck
610
611 config.h: stamp-h ; @true
612 stamp-h: config.in config.status
613 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
614
615 .gdbinit: # config.status $(srccom)/gdbinit.in
616 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
617
618 # start-sanitize-cygnus
619
620 # CGEN support
621
622 SCHEME = @SCHEME@
623 SCHEMEFLAGS = -s
624 srccgen = $(srcroot)/cgen
625
626 CGEN_VERBOSE = -v
627 CGEN_MAIN_SCM = $(srccgen)/object.scm $(srccgen)/utils.scm \
628 $(srccgen)/attr.scm $(srccgen)/enum.scm $(srccgen)/types.scm \
629 $(srccgen)/utils-cgen.scm $(srccgen)/cpu.scm \
630 $(srccgen)/mode.scm $(srccgen)/mach.scm \
631 $(srccgen)/model.scm $(srccgen)/hardware.scm \
632 $(srccgen)/ifield.scm $(srccgen)/iformat.scm \
633 $(srccgen)/operand.scm $(srccgen)/insn.scm \
634 $(srccgen)/cdl-c.scm $(srccgen)/sim.scm
635 CGEN_CPU_SCM = $(srccgen)/sim-cpu.scm $(srccgen)/sim-model.scm
636 CGEN_DECODE_SCM = $(srccgen)/sim-decode.scm
637
638 # Various choices for which cpu specific files to generate.
639 CGEN_CPU_EXTR = -E tmp-ext.c1
640 CGEN_CPU_READ = -R tmp-read.c1
641 CGEN_CPU_SEM = -S tmp-sem.c1
642 CGEN_CPU_SEMSW = -W tmp-semsw.c1
643
644 # We store the generated files in the source directory until we decide to
645 # ship a Scheme interpreter with gdb/binutils. Maybe we never will.
646
647 cgen-arch: force
648 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
649 $(SCHEME) $(SCHEMEFLAGS) \
650 $(srccgen) $(CGEN_VERBOSE) \
651 $(arch) "$(FLAGS)" ignored ignored ignored ignored
652
653 cgen-cpu: force
654 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
655 $(SCHEME) $(SCHEMEFLAGS) \
656 $(srccgen) $(CGEN_VERBOSE) \
657 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
658
659 cgen-decode: force
660 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
661 $(SCHEME) $(SCHEMEFLAGS) \
662 $(srccgen) $(CGEN_VERBOSE) \
663 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" ignored
664
665 # end-sanitize-cygnus
666
667 ## End COMMON_POST_CONFIG_FRAG
This page took 0.044039 seconds and 4 git commands to generate.