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