]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/Make-common.in
2003-04-13 Michael Snyder <msnyder@redhat.com>
[thirdparty/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
c906108c 1# Makefile fragment for common parts of all simulators.
e3e473da 2# Copyright 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c906108c
SS
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@
c906108c 97SIM_XOR_ENDIAN = @sim_xor_endian@
d4f3574e
SS
98WARN_CFLAGS = @WARN_CFLAGS@
99WERROR_CFLAGS = @WERROR_CFLAGS@
100SIM_WARN_CFLAGS = $(WARN_CFLAGS)
101SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c
SS
102
103HDEFINES = @HDEFINES@
104TDEFINES =
105
106AR = @AR@
107AR_FLAGS = rc
108RANLIB = @RANLIB@
109MAKEINFO = makeinfo
110
111DEP = $(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.
119SIM_OBJS =
120# List of extra dependencies.
121# Generally this consists of simulator specific files included by sim-main.h.
122SIM_EXTRA_DEPS =
123# List of flags to always pass to $(CC).
124SIM_EXTRA_CFLAGS =
125# List of extra libraries to link with.
126SIM_EXTRA_LIBS =
127# List of extra program dependencies.
128SIM_EXTRA_LIBDEPS =
129# List of main object files for `run'.
130SIM_RUN_OBJS = run.o
131# Dependency of `all' to build any extra files.
132SIM_EXTRA_ALL =
133# Dependency of `install' to install any extra files.
134SIM_EXTRA_INSTALL =
135# Dependency of `clean' to clean any extra files.
136SIM_EXTRA_CLEAN =
d690312f
CD
137# Likewise `distclean'
138SIM_EXTRA_DISTCLEAN =
c906108c
SS
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
149SIM_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
161SIM_NEW_COMMON_OBJS = \
162 sim-arange.o \
163 sim-bits.o \
c906108c
SS
164 sim-config.o \
165 sim-core.o \
166 sim-endian.o \
167 sim-events.o \
168 sim-fpu.o \
169 sim-io.o \
170 sim-info.o \
171 sim-load.o \
172 sim-memopt.o \
173 sim-module.o \
174 sim-options.o \
175 sim-profile.o \
176 sim-signal.o \
177 sim-trace.o \
178 sim-utils.o \
179 sim-watch.o \
180 \
181 $(SIM_HW_OBJS) \
182
183# Add this to SIM_EXTRA_DEPS.
184CGEN_INCLUDE_DEPS = \
185 $(srccom)/cgen-cpu.h \
186 $(srccom)/cgen-defs.h \
187 $(srccom)/cgen-engine.h \
188 $(srccom)/cgen-scache.h \
189 $(srccom)/cgen-sim.h \
190 $(srccom)/cgen-trace.h \
191 $(srccom)/cgen-types.h \
192 $(srcdir)/../../include/opcode/cgen.h
193
194## End COMMON_PRE_CONFIG_FRAG
195
196## COMMON_POST_CONFIG_FRAG
197
198CONFIG_CFLAGS = \
199 @DEFS@ \
200 $(SIM_CFLAGS) \
201 $(SIM_DEBUG) \
202 $(SIM_DEFAULT_MODEL) \
203 $(SIM_TRACE) \
204 $(SIM_PROFILE) \
205 $(SIM_BSWAP) \
206 $(SIM_ASSERT) \
207 $(SIM_ALIGNMENT) \
208 $(SIM_BITSIZE) \
209 $(SIM_ENDIAN) \
210 $(SIM_ENVIRONMENT) \
211 $(SIM_FLOAT) \
212 $(SIM_HW_CFLAGS) \
213 $(SIM_HOSTENDIAN) \
214 $(SIM_INLINE) \
215 $(SIM_PACKAGES) \
216 $(SIM_REGPARM) \
217 $(SIM_RESERVED_BITS) \
218 $(SIM_SCACHE) \
219 $(SIM_SMP) \
220 $(SIM_STDCALL) \
d4f3574e
SS
221 $(SIM_WARN_CFLAGS) \
222 $(SIM_WERROR_CFLAGS) \
c906108c
SS
223 $(SIM_XOR_ENDIAN) \
224 $(SIM_HARDWARE) \
225 $(SIM_EXTRA_CFLAGS) \
226 $(HDEFINES) $(TDEFINES)
227CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
228 -I../../include -I$(srcroot)/include \
229 -I../../bfd -I$(srcroot)/bfd \
230 -I../../opcodes -I$(srcroot)/opcodes \
231 -I../../intl -I$(srcroot)/intl
232ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
233BUILD_CFLAGS = -g -O $(CSEARCH)
234
235COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
236
237LIBIBERTY_LIB = ../../libiberty/libiberty.a
238BFD_LIB = ../../bfd/libbfd.a
239OPCODES_LIB = ../../opcodes/libopcodes.a
240INTLLIBS = @INTLLIBS@
241INTLDEPS = @INTLDEPS@
242CONFIG_LIBS = @LIBS@
243LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
244 $(SIM_EXTRA_LIBDEPS)
245EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
246 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
247
248LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
249
250RUNTESTFLAGS =
251
3c25f8c7
AC
252callback_h = $(srcroot)/include/gdb/callback.h
253remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
254
c906108c
SS
255all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit
256
257libsim.a: $(LIB_OBJS)
258 rm -f libsim.a
259 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
260 $(RANLIB) libsim.a
261
262run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
263 $(CC) $(ALL_CFLAGS) -o run$(EXEEXT) \
264 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
265
3c25f8c7 266run.o: $(srccom)/run.c config.h tconfig.h $(remote_sim_h) $(callback_h)
c906108c
SS
267 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
268
269# FIXME: Ideally, callback.o and friends live in a library outside of
270# both the gdb and simulator source trees (e.g. devo/remote. Not
271# devo/libremote because this directory would contain more than just
272# a library).
273
3c25f8c7 274callback.o: $(srccom)/callback.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
275 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
276
3c25f8c7 277syscall.o: $(srccom)/syscall.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
278 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
279
280targ-map.o: targ-map.c targ-vals.h
281
282gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
283 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
284
285targ-vals.h targ-map.c: stamp-tvals
286stamp-tvals: gentmap
287 rm -f tmp-tvals.h tmp-tmap.c
288 ./gentmap -h >tmp-tvals.h
289 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
290 ./gentmap -c >tmp-tmap.c
291 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
292 touch stamp-tvals
293
294#
295# Rules for building sim-* components. Triggered by listing the corresponding
296# .o file in the list of simulator targets.
297#
298
299sim_main_headers = \
300 sim-main.h \
301 $(srccom)/sim-assert.h \
302 $(srccom)/sim-base.h \
303 $(srccom)/sim-basics.h \
304 $(srccom)/sim-config.h \
305 $(srccom)/sim-cpu.h \
306 $(srccom)/sim-engine.h \
307 $(srccom)/sim-events.h \
308 $(srccom)/sim-inline.h \
309 $(srccom)/sim-memopt.h \
310 $(srccom)/sim-model.h \
311 $(srccom)/sim-module.h \
312 $(srccom)/sim-profile.h \
313 $(srccom)/sim-signal.h \
314 $(srccom)/sim-trace.h \
315 $(srccom)/sim-watch.h \
316 tconfig.h \
317 $(SIM_EXTRA_DEPS)
318
319# Exported version of sim_main_headers.
320SIM_MAIN_DEPS = \
321 $(sim_main_headers)
322
323sim-assert_h = $(srccom)/sim-assert.h
324sim-endian_h = $(srccom)/sim-endian.h
325sim-n-endian_h = $(srccom)/sim-n-endian.h
326sim-arange_h = $(srccom)/sim-arange.h
327sim-bits_h = $(srccom)/sim-bits.h
328sim-config_h = $(srccom)/sim-config.h
329sim-n-bits_h = $(srccom)/sim-n-bits.h
330sim-core_h = $(srccom)/sim-core.h
331sim-n-core_h = $(srccom)/sim-n-core.h
332sim-engine_h = $(srccom)/sim-engine.h
333sim-events_h = $(srccom)/sim-events.h
334sim-fpu_h = $(srccom)/sim-fpu.h
335sim-io_h = $(srccom)/sim-io.h
336sim-options_h = $(srccom)/sim-options.h
c906108c
SS
337sim-signal_h = $(srccom)/sim-signal.h
338
339hw-alloc_h = $(srccom)/hw-alloc.h
340hw-base_h = $(srccom)/hw-base.h
341hw-device_h = $(srccom)/hw-device.h
342hw-events_h = $(srccom)/hw-events.h
343hw-handles_h = $(srccom)/hw-handles.h
344hw-instances_h = $(srccom)/hw-instances.h
345hw-ports_h = $(srccom)/hw-ports.h
346hw-properties_h = $(srccom)/hw-properties.h
347hw-tree_h = $(srccom)/hw-tree.h
348
349hw_main_headers = \
350 $(srccom)/hw-main.h \
351 $(hw-alloc_h) \
352 $(hw-base_h) \
353 $(hw-device_h) \
354 $(hw-events_h) \
355 $(hw-instances_h) \
356 $(hw-handles_h) \
357 $(hw-ports_h) \
358 $(hw-properties_h) \
359
360# FIXME: If this complicated way of building .o files from ../common is
361# necessary, the reason should be documented here.
362
363BUILT_SRC_FROM_COMMON= \
364 sim-inline.c
365
366sim-abort.o: $(srccom)/sim-abort.c \
367 $(SIM_EXTRA_DEPS)
368 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
369
370sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
371 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
372
373sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
374 $(SIM_EXTRA_DEPS)
375 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
376
377sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
378 $(SIM_EXTRA_DEPS)
379 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
380
381sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
382 $(sim-core_h) $(sim-n-core_h)
383 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
384
385sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
386 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
387
388sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
389 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
390
391sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
392 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
393
394sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
395 $(SIM_EXTRA_DEPS)
396 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
397
398sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
399 $(SIM_EXTRA_DEPS)
400 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
401
3c25f8c7 402sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
403 $(SIM_EXTRA_DEPS)
404 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
405
3c25f8c7 406sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
c906108c
SS
407 $(SIM_EXTRA_DEPS)
408 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
409
410sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
411 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
412
3c25f8c7 413sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
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
3c25f8c7
AC
423sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
424 targ-vals.h
c906108c
SS
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
3c25f8c7 439sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
440 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
441
3c25f8c7 442sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
443 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
444
3c25f8c7 445sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
446 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
447
448sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
449 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
450
451sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
452 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
453
454sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
455 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
456
457sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
458 $(sim-options_h) $(sim-io_h)
459 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
460
461sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
462 $(sim-options_h) $(sim-io_h)
463 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
464
465sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
466 $(sim-io_h)
467 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
468
469sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
470 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
471
472sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
473 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
474
3c25f8c7 475sim-load.o: $(srccom)/sim-load.c $(callback_h)
c906108c
SS
476 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
477
c906108c
SS
478
479# FIXME This is one very simple-minded way of generating the file hw-config.h
480hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
481 rm -f tmp-hw.h
482 echo "/* generated by Makefile */" > tmp-hw.h
483 for hw in $(SIM_HW) ; do \
484 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
485 done >> tmp-hw.h
486 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
487 for hw in $(SIM_HW) ; do \
488 echo " dv_$${hw}_descriptor," ; \
489 done >> tmp-hw.h
490 echo " NULL," >> tmp-hw.h
491 echo "};" >> tmp-hw.h
492 mv tmp-hw.h hw-config.h
493
494hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
495 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
496
497hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
498 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
499
500hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
501 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
502
503hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
504 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
505
506test-hw-events: $(srccom)/hw-events.c libsim.a
507 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
508 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
509
510hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
511 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
512
513hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
514 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
515
516hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
517 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
518
519hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
520 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
521
522hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
523 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
524
525# Devices.
526
527dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
528 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
529
530dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
531 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
532
533dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
534 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
535
536dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
537 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
538
539
3c25f8c7 540nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
c906108c
SS
541 $(sim_main_headers)
542 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
543
544# CGEN support.
545
546# For use in Makefile.in for cpu-specific files.
547CGEN_MAIN_CPU_DEPS = \
548 $(SIM_MAIN_DEPS) \
549 $(CGEN_INCLUDE_DEPS) \
550 $(srccom)/cgen-ops.h \
43ff13b4 551 $(srccom)/cgen-mem.h \
d4f3574e 552 $(srccom)/cgen-par.h \
43ff13b4 553 $(srccom)/cgen-fpu.h
c906108c
SS
554
555cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
556 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
557
558cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
559 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
560
561cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
562 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
563
43ff13b4
JM
564cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
565 $(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
566
567cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
568 $(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
569
c906108c
SS
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
d4f3574e
SS
574cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
575 $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
576 $(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
577
c906108c
SS
578# Support targets.
579
580install: install-common $(SIM_EXTRA_INSTALL)
581
582install-common: installdirs
583 n=`echo run | sed '$(program_transform_name)'`; \
584 $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n$(EXEEXT)
585 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
586 $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
587 ( cd $(libdir) ; $(RANLIB) $$n )
588
589installdirs:
590 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
076043f2 591 $(SHELL) $(srcdir)/../../mkinstalldirs $(libdir)
c906108c
SS
592
593check:
594 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
595
596info:
597clean-info:
598install-info:
599
600.NOEXPORT:
601MAKEOVERRIDES=
602
603tags etags: TAGS
604
605# Macros like EXTERN_SIM_CORE confuse tags.
606# And the sim-n-foo.h files create functions that can't be found either.
607TAGS: force
608 cd $(srcdir) && \
609 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
610 *.[ch] ../common/*.[ch]
611
612clean: $(SIM_EXTRA_CLEAN)
613 rm -f *.[oa] *~ core
614 rm -f run libsim.a
615 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
616 if [ ! -f Make-common.in ] ; then \
617 rm -f $(BUILT_SRC_FROM_COMMON) ; \
618 fi
619 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
620
d690312f 621distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
c906108c
SS
622 rm -f TAGS
623 rm -f Makefile config.cache config.log config.status .gdbinit
624 rm -f tconfig.h config.h stamp-h
625 rm -f targ-vals.def
626
627.c.o:
628 $(CC) -c $(ALL_CFLAGS) $<
629
630# Dummy target to force execution of dependent targets.
631force:
632
633Makefile: Makefile.in $(srccom)/Make-common.in config.status
634 CONFIG_HEADERS= $(SHELL) ./config.status
635
636config.status: configure
637 $(SHELL) ./config.status --recheck
638
639config.h: stamp-h ; @true
640stamp-h: config.in config.status
641 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
642
643.gdbinit: # config.status $(srccom)/gdbinit.in
644 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
645
646
604259a0
FCE
647# CGEN support
648
649CGENDIR = @cgendir@
650CGEN = `if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi`
651CGENFLAGS = -v
e3e473da 652CGEN_CPU_DIR = $(CGENDIR)/cpu
604259a0 653
7ede505a 654CGEN_READ_SCM = $(CGENDIR)/sim.scm
e3e473da
BE
655CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
656CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
657CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
658CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
604259a0
FCE
659
660# Various choices for which cpu specific files to generate.
661CGEN_CPU_EXTR = -E tmp-ext.c1
662CGEN_CPU_READ = -R tmp-read.c1
663CGEN_CPU_WRITE = -W tmp-write.c1
664CGEN_CPU_SEM = -S tmp-sem.c1
665CGEN_CPU_SEMSW = -X tmp-semsw.c1
666
667CGEN_FLAGS_TO_PASS = \
668 CGEN=$(CGEN) \
669 CGENFLAGS="$(CGENFLAGS)"
670
671# We store the generated files in the source directory until we decide to
672# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
673
674cgen-arch: force
675 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
676 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
e4f5c43e 677 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored ignored
3c25f8c7 678
604259a0
FCE
679cgen-cpu: force
680 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
681 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
e4f5c43e 682 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
604259a0 683
c79688eb
BE
684cgen-defs: force
685 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
686 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
687 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" ignored
688
604259a0
FCE
689cgen-decode: force
690 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
691 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
c79688eb 692 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
604259a0
FCE
693
694cgen-cpu-decode: force
695 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
696 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
e4f5c43e 697 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
604259a0
FCE
698
699cgen-desc: force
700 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
701 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
e4f5c43e 702 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" ignored
604259a0 703
c906108c 704## End COMMON_POST_CONFIG_FRAG