]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/Make-common.in
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
c906108c
SS
1# Makefile fragment for common parts of all simulators.
2# Copyright (C) 1997, 1998, 1999 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
38VPATH = @srcdir@
39srcdir = @srcdir@
40srccom = $(srcdir)/../common
41srcroot = $(srcdir)/../..
42
43prefix = @prefix@
44exec_prefix = @exec_prefix@
45
46host_alias = @host_alias@
47target_alias = @target_alias@
48program_transform_name = @program_transform_name@
49bindir = @bindir@
50
51libdir = @libdir@
52tooldir = $(libdir)/$(target_alias)
53
54datadir = @datadir@
55mandir = @mandir@
56man1dir = $(mandir)/man1
57infodir = @infodir@
58includedir = @includedir@
59
60# This can be referenced by the gettext configuration code.
61top_builddir = ..
62
63EXEEXT = @EXEEXT@
64SHELL = @SHELL@
65
66INSTALL = @INSTALL@
67INSTALL_PROGRAM = @INSTALL_PROGRAM@
68INSTALL_DATA = @INSTALL_DATA@
69
70CC = @CC@
71CC_FOR_BUILD = @CC_FOR_BUILD@
72CFLAGS = @CFLAGS@
73SIM_BSWAP = @sim_bswap@
74SIM_CFLAGS = @sim_cflags@
75SIM_DEBUG = @sim_debug@
76SIM_TRACE = @sim_trace@
77SIM_PROFILE = @sim_profile@
78
79SIM_ASSERT = @sim_assert@
80SIM_ALIGNMENT = @sim_alignment@
81SIM_BITSIZE = @sim_bitsize@
82SIM_DEFAULT_MODEL = @sim_default_model@
83SIM_ENDIAN = @sim_endian@
84SIM_ENVIRONMENT = @sim_environment@
85SIM_FLOAT = @sim_float@
86SIM_HW_CFLAGS = @sim_hw_cflags@
87SIM_HW_OBJS = @sim_hw_objs@
88SIM_HW = @sim_hw@
89SIM_HOSTENDIAN = @sim_hostendian@
90SIM_INLINE = @sim_inline@
91SIM_PACKAGES = @sim_packages@
92SIM_REGPARM = @sim_regparm@
93SIM_RESERVED_BITS = @sim_reserved_bits@
94SIM_SCACHE = @sim_scache@
95SIM_SMP = @sim_smp@
96SIM_STDCALL = @sim_stdcall@
97SIM_WARNINGS = @build_warnings@
98SIM_XOR_ENDIAN = @sim_xor_endian@
99
100HDEFINES = @HDEFINES@
101TDEFINES =
102
103AR = @AR@
104AR_FLAGS = rc
105RANLIB = @RANLIB@
106MAKEINFO = makeinfo
107
108DEP = $(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.
116SIM_OBJS =
117# List of extra dependencies.
118# Generally this consists of simulator specific files included by sim-main.h.
119SIM_EXTRA_DEPS =
120# List of flags to always pass to $(CC).
121SIM_EXTRA_CFLAGS =
122# List of extra libraries to link with.
123SIM_EXTRA_LIBS =
124# List of extra program dependencies.
125SIM_EXTRA_LIBDEPS =
126# List of main object files for `run'.
127SIM_RUN_OBJS = run.o
128# Dependency of `all' to build any extra files.
129SIM_EXTRA_ALL =
130# Dependency of `install' to install any extra files.
131SIM_EXTRA_INSTALL =
132# Dependency of `clean' to clean any extra files.
133SIM_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
144SIM_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
156SIM_NEW_COMMON_OBJS = \
157 sim-arange.o \
158 sim-bits.o \
159 sim-break.o \
160 sim-config.o \
161 sim-core.o \
162 sim-endian.o \
163 sim-events.o \
164 sim-fpu.o \
165 sim-io.o \
166 sim-info.o \
167 sim-load.o \
168 sim-memopt.o \
169 sim-module.o \
170 sim-options.o \
171 sim-profile.o \
172 sim-signal.o \
173 sim-trace.o \
174 sim-utils.o \
175 sim-watch.o \
176 \
177 $(SIM_HW_OBJS) \
178
179# Add this to SIM_EXTRA_DEPS.
180CGEN_INCLUDE_DEPS = \
181 $(srccom)/cgen-cpu.h \
182 $(srccom)/cgen-defs.h \
183 $(srccom)/cgen-engine.h \
184 $(srccom)/cgen-scache.h \
185 $(srccom)/cgen-sim.h \
186 $(srccom)/cgen-trace.h \
187 $(srccom)/cgen-types.h \
188 $(srcdir)/../../include/opcode/cgen.h
189
190## End COMMON_PRE_CONFIG_FRAG
191
192## COMMON_POST_CONFIG_FRAG
193
194CONFIG_CFLAGS = \
195 @DEFS@ \
196 $(SIM_CFLAGS) \
197 $(SIM_DEBUG) \
198 $(SIM_DEFAULT_MODEL) \
199 $(SIM_TRACE) \
200 $(SIM_PROFILE) \
201 $(SIM_BSWAP) \
202 $(SIM_ASSERT) \
203 $(SIM_ALIGNMENT) \
204 $(SIM_BITSIZE) \
205 $(SIM_ENDIAN) \
206 $(SIM_ENVIRONMENT) \
207 $(SIM_FLOAT) \
208 $(SIM_HW_CFLAGS) \
209 $(SIM_HOSTENDIAN) \
210 $(SIM_INLINE) \
211 $(SIM_PACKAGES) \
212 $(SIM_REGPARM) \
213 $(SIM_RESERVED_BITS) \
214 $(SIM_SCACHE) \
215 $(SIM_SMP) \
216 $(SIM_STDCALL) \
217 $(SIM_WARNINGS) \
218 $(SIM_XOR_ENDIAN) \
219 $(SIM_HARDWARE) \
220 $(SIM_EXTRA_CFLAGS) \
221 $(HDEFINES) $(TDEFINES)
222CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
223 -I../../include -I$(srcroot)/include \
224 -I../../bfd -I$(srcroot)/bfd \
225 -I../../opcodes -I$(srcroot)/opcodes \
226 -I../../intl -I$(srcroot)/intl
227ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
228BUILD_CFLAGS = -g -O $(CSEARCH)
229
230COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
231
232LIBIBERTY_LIB = ../../libiberty/libiberty.a
233BFD_LIB = ../../bfd/libbfd.a
234OPCODES_LIB = ../../opcodes/libopcodes.a
235INTLLIBS = @INTLLIBS@
236INTLDEPS = @INTLDEPS@
237CONFIG_LIBS = @LIBS@
238LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
239 $(SIM_EXTRA_LIBDEPS)
240EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
241 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
242
243LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
244
245RUNTESTFLAGS =
246
247all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit
248
249libsim.a: $(LIB_OBJS)
250 rm -f libsim.a
251 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
252 $(RANLIB) libsim.a
253
254run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
255 $(CC) $(ALL_CFLAGS) -o run$(EXEEXT) \
256 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
257
258run.o: $(srccom)/run.c config.h tconfig.h \
259 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h
260 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
261
262# FIXME: Ideally, callback.o and friends live in a library outside of
263# both the gdb and simulator source trees (e.g. devo/remote. Not
264# devo/libremote because this directory would contain more than just
265# a library).
266
267callback.o: $(srccom)/callback.c config.h tconfig.h \
268 $(srcroot)/include/callback.h targ-vals.h
269 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
270
271syscall.o: $(srccom)/syscall.c config.h tconfig.h \
272 $(srcroot)/include/callback.h targ-vals.h
273 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
274
275targ-map.o: targ-map.c targ-vals.h
276
277gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
278 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
279
280targ-vals.h targ-map.c: stamp-tvals
281stamp-tvals: gentmap
282 rm -f tmp-tvals.h tmp-tmap.c
283 ./gentmap -h >tmp-tvals.h
284 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
285 ./gentmap -c >tmp-tmap.c
286 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
287 touch stamp-tvals
288
289#
290# Rules for building sim-* components. Triggered by listing the corresponding
291# .o file in the list of simulator targets.
292#
293
294sim_main_headers = \
295 sim-main.h \
296 $(srccom)/sim-assert.h \
297 $(srccom)/sim-base.h \
298 $(srccom)/sim-basics.h \
299 $(srccom)/sim-config.h \
300 $(srccom)/sim-cpu.h \
301 $(srccom)/sim-engine.h \
302 $(srccom)/sim-events.h \
303 $(srccom)/sim-inline.h \
304 $(srccom)/sim-memopt.h \
305 $(srccom)/sim-model.h \
306 $(srccom)/sim-module.h \
307 $(srccom)/sim-profile.h \
308 $(srccom)/sim-signal.h \
309 $(srccom)/sim-trace.h \
310 $(srccom)/sim-watch.h \
311 tconfig.h \
312 $(SIM_EXTRA_DEPS)
313
314# Exported version of sim_main_headers.
315SIM_MAIN_DEPS = \
316 $(sim_main_headers)
317
318sim-assert_h = $(srccom)/sim-assert.h
319sim-endian_h = $(srccom)/sim-endian.h
320sim-n-endian_h = $(srccom)/sim-n-endian.h
321sim-arange_h = $(srccom)/sim-arange.h
322sim-bits_h = $(srccom)/sim-bits.h
323sim-config_h = $(srccom)/sim-config.h
324sim-n-bits_h = $(srccom)/sim-n-bits.h
325sim-core_h = $(srccom)/sim-core.h
326sim-n-core_h = $(srccom)/sim-n-core.h
327sim-engine_h = $(srccom)/sim-engine.h
328sim-events_h = $(srccom)/sim-events.h
329sim-fpu_h = $(srccom)/sim-fpu.h
330sim-io_h = $(srccom)/sim-io.h
331sim-options_h = $(srccom)/sim-options.h
332sim-break_h = $(srccom)/sim-break.h
333sim-signal_h = $(srccom)/sim-signal.h
334
335hw-alloc_h = $(srccom)/hw-alloc.h
336hw-base_h = $(srccom)/hw-base.h
337hw-device_h = $(srccom)/hw-device.h
338hw-events_h = $(srccom)/hw-events.h
339hw-handles_h = $(srccom)/hw-handles.h
340hw-instances_h = $(srccom)/hw-instances.h
341hw-ports_h = $(srccom)/hw-ports.h
342hw-properties_h = $(srccom)/hw-properties.h
343hw-tree_h = $(srccom)/hw-tree.h
344
345hw_main_headers = \
346 $(srccom)/hw-main.h \
347 $(hw-alloc_h) \
348 $(hw-base_h) \
349 $(hw-device_h) \
350 $(hw-events_h) \
351 $(hw-instances_h) \
352 $(hw-handles_h) \
353 $(hw-ports_h) \
354 $(hw-properties_h) \
355
356# FIXME: If this complicated way of building .o files from ../common is
357# necessary, the reason should be documented here.
358
359BUILT_SRC_FROM_COMMON= \
360 sim-inline.c
361
362sim-abort.o: $(srccom)/sim-abort.c \
363 $(SIM_EXTRA_DEPS)
364 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
365
366sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
367 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
368
369sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
370 $(SIM_EXTRA_DEPS)
371 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
372
373sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
374 $(SIM_EXTRA_DEPS)
375 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
376
377sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
378 $(sim-core_h) $(sim-n-core_h)
379 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
380
381sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
382 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
383
384sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
385 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
386
387sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
388 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
389
390sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
391 $(SIM_EXTRA_DEPS)
392 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
393
394sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
395 $(SIM_EXTRA_DEPS)
396 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
397
398
399sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) \
400 $(srcroot)/include/remote-sim.h \
401 $(SIM_EXTRA_DEPS)
402 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
403
404sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) \
405 $(srcroot)/include/remote-sim.h \
406 $(SIM_EXTRA_DEPS)
407 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
408
409sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
410 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
411
412sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) \
413 $(srcroot)/include/remote-sim.h \
414 $(SIM_EXTRA_DEPS)
415 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
416
417sim-inline.c: $(srccom)/sim-inline.c
418 rm -f $@ tmp-$@
419 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
420 cat $(srccom)/$@ >> tmp-$@
421 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
422
423sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) \
424 $(srcroot)/include/remote-sim.h
425 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
426
427sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
428 $(sim-io_h)
429 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
430
431sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
432 $(sim-io_h)
433 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
434
435sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
436 $(sim-options_h) $(sim-io_h)
437 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
438
439sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) \
440 $(srcroot)/include/remote-sim.h
441 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
442
443sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) \
444 $(srcroot)/include/remote-sim.h
445 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
446
447sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) \
448 $(srcroot)/include/remote-sim.h
449 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
450
451sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
452 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
453
454sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
455 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
456
457sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
458 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
459
460sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
461 $(sim-options_h) $(sim-io_h)
462 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
463
464sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
465 $(sim-options_h) $(sim-io_h)
466 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
467
468sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
469 $(sim-io_h)
470 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
471
472sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
473 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
474
475sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
476 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
477
478sim-load.o: $(srccom)/sim-load.c $(srcroot)/include/callback.h
479 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
480
481sim-break.o: $(srccom)/sim-break.c $(sim_main_headers) \
482 $(sim_break_h)
483 $(CC) -c $(srccom)/sim-break.c $(ALL_CFLAGS)
484
485
486# FIXME This is one very simple-minded way of generating the file hw-config.h
487hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
488 rm -f tmp-hw.h
489 echo "/* generated by Makefile */" > tmp-hw.h
490 for hw in $(SIM_HW) ; do \
491 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
492 done >> tmp-hw.h
493 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
494 for hw in $(SIM_HW) ; do \
495 echo " dv_$${hw}_descriptor," ; \
496 done >> tmp-hw.h
497 echo " NULL," >> tmp-hw.h
498 echo "};" >> tmp-hw.h
499 mv tmp-hw.h hw-config.h
500
501hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
502 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
503
504hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
505 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
506
507hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
508 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
509
510hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
511 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
512
513test-hw-events: $(srccom)/hw-events.c libsim.a
514 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
515 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
516
517hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
518 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
519
520hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
521 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
522
523hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
524 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
525
526hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
527 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
528
529hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
530 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
531
532# Devices.
533
534dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
535 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
536
537dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
538 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
539
540dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
541 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
542
543dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
544 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
545
546
547nrun.o: $(srccom)/nrun.c config.h tconfig.h \
548 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h \
549 $(sim_main_headers)
550 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
551
552# CGEN support.
553
554# For use in Makefile.in for cpu-specific files.
555CGEN_MAIN_CPU_DEPS = \
556 $(SIM_MAIN_DEPS) \
557 $(CGEN_INCLUDE_DEPS) \
558 $(srccom)/cgen-ops.h \
559 $(srccom)/cgen-mem.h
560
561cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
562 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
563
564cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
565 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
566
567cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
568 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
569
570cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
571 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
572 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
573
574# Support targets.
575
576install: install-common $(SIM_EXTRA_INSTALL)
577
578install-common: installdirs
579 n=`echo run | sed '$(program_transform_name)'`; \
580 $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n$(EXEEXT)
581 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
582 $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
583 ( cd $(libdir) ; $(RANLIB) $$n )
584
585installdirs:
586 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
587
588check:
589 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
590
591info:
592clean-info:
593install-info:
594
595.NOEXPORT:
596MAKEOVERRIDES=
597
598tags etags: TAGS
599
600# Macros like EXTERN_SIM_CORE confuse tags.
601# And the sim-n-foo.h files create functions that can't be found either.
602TAGS: force
603 cd $(srcdir) && \
604 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
605 *.[ch] ../common/*.[ch]
606
607clean: $(SIM_EXTRA_CLEAN)
608 rm -f *.[oa] *~ core
609 rm -f run libsim.a
610 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
611 if [ ! -f Make-common.in ] ; then \
612 rm -f $(BUILT_SRC_FROM_COMMON) ; \
613 fi
614 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
615
616distclean mostlyclean maintainer-clean realclean: clean
617 rm -f TAGS
618 rm -f Makefile config.cache config.log config.status .gdbinit
619 rm -f tconfig.h config.h stamp-h
620 rm -f targ-vals.def
621
622.c.o:
623 $(CC) -c $(ALL_CFLAGS) $<
624
625# Dummy target to force execution of dependent targets.
626force:
627
628Makefile: Makefile.in $(srccom)/Make-common.in config.status
629 CONFIG_HEADERS= $(SHELL) ./config.status
630
631config.status: configure
632 $(SHELL) ./config.status --recheck
633
634config.h: stamp-h ; @true
635stamp-h: config.in config.status
636 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
637
638.gdbinit: # config.status $(srccom)/gdbinit.in
639 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
640
641
642## End COMMON_POST_CONFIG_FRAG