sim: start a unified sim_do_command
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
c906108c 1# Makefile fragment for common parts of all simulators.
7b6bb8da
JB
2# Copyright 1997, 1998, 1999, 2000, 2001, 2004, 2005, 2007, 2008, 2009, 2010,
3# 2011 Free Software Foundation, Inc.
c906108c
SS
4# Contributed by Cygnus Support.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
4744ac1b 8# the Free Software Foundation; either version 3 of the License, or
c906108c 9# (at your option) any later version.
4744ac1b 10#
c906108c
SS
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
4744ac1b 15#
c906108c 16# You should have received a copy of the GNU General Public License
4744ac1b 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
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@
1428dced 55datarootdir = @datarootdir@
c906108c
SS
56mandir = @mandir@
57man1dir = $(mandir)/man1
58infodir = @infodir@
59includedir = @includedir@
60
61# This can be referenced by the gettext configuration code.
62top_builddir = ..
63
64EXEEXT = @EXEEXT@
65SHELL = @SHELL@
66
67INSTALL = @INSTALL@
68INSTALL_PROGRAM = @INSTALL_PROGRAM@
69INSTALL_DATA = @INSTALL_DATA@
70
71CC = @CC@
72CC_FOR_BUILD = @CC_FOR_BUILD@
73CFLAGS = @CFLAGS@
74SIM_BSWAP = @sim_bswap@
75SIM_CFLAGS = @sim_cflags@
76SIM_DEBUG = @sim_debug@
77SIM_TRACE = @sim_trace@
78SIM_PROFILE = @sim_profile@
79
80SIM_ASSERT = @sim_assert@
81SIM_ALIGNMENT = @sim_alignment@
82SIM_BITSIZE = @sim_bitsize@
83SIM_DEFAULT_MODEL = @sim_default_model@
84SIM_ENDIAN = @sim_endian@
85SIM_ENVIRONMENT = @sim_environment@
86SIM_FLOAT = @sim_float@
87SIM_HW_CFLAGS = @sim_hw_cflags@
88SIM_HW_OBJS = @sim_hw_objs@
89SIM_HW = @sim_hw@
90SIM_HOSTENDIAN = @sim_hostendian@
91SIM_INLINE = @sim_inline@
92SIM_PACKAGES = @sim_packages@
93SIM_REGPARM = @sim_regparm@
94SIM_RESERVED_BITS = @sim_reserved_bits@
95SIM_SCACHE = @sim_scache@
96SIM_SMP = @sim_smp@
97SIM_STDCALL = @sim_stdcall@
c906108c 98SIM_XOR_ENDIAN = @sim_xor_endian@
d4f3574e
SS
99WARN_CFLAGS = @WARN_CFLAGS@
100WERROR_CFLAGS = @WERROR_CFLAGS@
101SIM_WARN_CFLAGS = $(WARN_CFLAGS)
102SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c
SS
103
104HDEFINES = @HDEFINES@
105TDEFINES =
106
107AR = @AR@
108AR_FLAGS = rc
109RANLIB = @RANLIB@
110MAKEINFO = makeinfo
111
112DEP = $(srcroot)/mkdep
113
114# Each simulator's Makefile.in defines one or more of these variables
115# to override our settings as necessary. There is no need to define these
116# in the simulator's Makefile.in if one is using the default value. In fact
117# it's preferable not to.
118
119# List of object files, less common parts.
120SIM_OBJS =
121# List of extra dependencies.
122# Generally this consists of simulator specific files included by sim-main.h.
123SIM_EXTRA_DEPS =
124# List of flags to always pass to $(CC).
125SIM_EXTRA_CFLAGS =
126# List of extra libraries to link with.
127SIM_EXTRA_LIBS =
128# List of extra program dependencies.
129SIM_EXTRA_LIBDEPS =
130# List of main object files for `run'.
131SIM_RUN_OBJS = run.o
132# Dependency of `all' to build any extra files.
133SIM_EXTRA_ALL =
134# Dependency of `install' to install any extra files.
135SIM_EXTRA_INSTALL =
136# Dependency of `clean' to clean any extra files.
137SIM_EXTRA_CLEAN =
d690312f
CD
138# Likewise `distclean'
139SIM_EXTRA_DISTCLEAN =
c906108c
SS
140
141# Every time a new general purpose source file was added every target's
142# Makefile.in needed to be updated to include the file in SIM_OBJS.
143# This doesn't scale.
144# This variable specifies all the generic stuff common to the newer simulators.
145# Things like sim-reason.o can't go here as the cpu may provide its own
146# (though hopefully in time that won't be so). Things like sim-bits.o can go
147# here. Some files are used by all simulators (e.g. callback.o).
148# Those files are specified in LIB_OBJS below.
149
150SIM_COMMON_HW_OBJS = \
151 hw-alloc.o \
152 hw-base.o \
153 hw-device.o \
154 hw-events.o \
155 hw-handles.o \
156 hw-instances.o \
157 hw-ports.o \
158 hw-properties.o \
159 hw-tree.o \
160 sim-hw.o \
161
162SIM_NEW_COMMON_OBJS = \
163 sim-arange.o \
164 sim-bits.o \
2419798b 165 sim-command.o \
c906108c
SS
166 sim-config.o \
167 sim-core.o \
168 sim-endian.o \
169 sim-events.o \
170 sim-fpu.o \
171 sim-io.o \
172 sim-info.o \
173 sim-load.o \
174 sim-memopt.o \
175 sim-module.o \
176 sim-options.o \
177 sim-profile.o \
178 sim-signal.o \
179 sim-trace.o \
180 sim-utils.o \
181 sim-watch.o \
182 \
183 $(SIM_HW_OBJS) \
184
80532737
DE
185# cgen-sim.h and the headers it includes
186CGEN_SIM_DEPS = \
187 $(srccom)/cgen-sim.h \
c906108c 188 $(srccom)/cgen-defs.h \
c906108c 189 $(srccom)/cgen-scache.h \
80532737
DE
190 $(srccom)/cgen-fpu.h \
191 $(srccom)/cgen-par.h \
192 $(srccom)/cgen-cpu.h \
c906108c 193 $(srccom)/cgen-trace.h \
80532737
DE
194 cpuall.h
195
196# Add this to SIM_EXTRA_DEPS.
197CGEN_INCLUDE_DEPS = \
198 $(CGEN_SIM_DEPS) \
199 $(srccom)/cgen-engine.h \
c906108c
SS
200 $(srccom)/cgen-types.h \
201 $(srcdir)/../../include/opcode/cgen.h
202
203## End COMMON_PRE_CONFIG_FRAG
204
205## COMMON_POST_CONFIG_FRAG
206
207CONFIG_CFLAGS = \
208 @DEFS@ \
209 $(SIM_CFLAGS) \
210 $(SIM_DEBUG) \
211 $(SIM_DEFAULT_MODEL) \
212 $(SIM_TRACE) \
213 $(SIM_PROFILE) \
214 $(SIM_BSWAP) \
215 $(SIM_ASSERT) \
216 $(SIM_ALIGNMENT) \
217 $(SIM_BITSIZE) \
218 $(SIM_ENDIAN) \
219 $(SIM_ENVIRONMENT) \
220 $(SIM_FLOAT) \
221 $(SIM_HW_CFLAGS) \
222 $(SIM_HOSTENDIAN) \
223 $(SIM_INLINE) \
224 $(SIM_PACKAGES) \
225 $(SIM_REGPARM) \
226 $(SIM_RESERVED_BITS) \
227 $(SIM_SCACHE) \
228 $(SIM_SMP) \
229 $(SIM_STDCALL) \
d4f3574e
SS
230 $(SIM_WARN_CFLAGS) \
231 $(SIM_WERROR_CFLAGS) \
c906108c
SS
232 $(SIM_XOR_ENDIAN) \
233 $(SIM_HARDWARE) \
234 $(SIM_EXTRA_CFLAGS) \
235 $(HDEFINES) $(TDEFINES)
236CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
237 -I../../include -I$(srcroot)/include \
238 -I../../bfd -I$(srcroot)/bfd \
239 -I../../opcodes -I$(srcroot)/opcodes \
20e95c23 240 @INCINTL@
c906108c
SS
241ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
242BUILD_CFLAGS = -g -O $(CSEARCH)
243
244COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
245
246LIBIBERTY_LIB = ../../libiberty/libiberty.a
247BFD_LIB = ../../bfd/libbfd.a
248OPCODES_LIB = ../../opcodes/libopcodes.a
20e95c23
DJ
249LIBINTL = @LIBINTL@
250LIBINTL_DEP = @LIBINTL_DEP@
c906108c 251CONFIG_LIBS = @LIBS@
20e95c23 252LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
c906108c 253 $(SIM_EXTRA_LIBDEPS)
20e95c23 254EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
c906108c
SS
255 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
256
6efef468 257LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
c906108c
SS
258
259RUNTESTFLAGS =
260
3c25f8c7
AC
261callback_h = $(srcroot)/include/gdb/callback.h
262remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
263
4ec242d7 264all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
c906108c
SS
265
266libsim.a: $(LIB_OBJS)
267 rm -f libsim.a
268 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
269 $(RANLIB) libsim.a
270
4ec242d7 271run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
be091327 272 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
c906108c
SS
273 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
274
3c25f8c7 275run.o: $(srccom)/run.c config.h tconfig.h $(remote_sim_h) $(callback_h)
c906108c
SS
276 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
277
278# FIXME: Ideally, callback.o and friends live in a library outside of
279# both the gdb and simulator source trees (e.g. devo/remote. Not
280# devo/libremote because this directory would contain more than just
281# a library).
282
3c25f8c7 283callback.o: $(srccom)/callback.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
284 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
285
3c25f8c7 286syscall.o: $(srccom)/syscall.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
287 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
288
289targ-map.o: targ-map.c targ-vals.h
290
291gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
292 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
293
294targ-vals.h targ-map.c: stamp-tvals
295stamp-tvals: gentmap
296 rm -f tmp-tvals.h tmp-tmap.c
297 ./gentmap -h >tmp-tvals.h
298 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
299 ./gentmap -c >tmp-tmap.c
300 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
301 touch stamp-tvals
302
6efef468
JM
303version.c: Makefile ../../gdb/version.in
304 rm -f version.c-tmp version.c
305 echo '#include "version.h"' >> version.c-tmp
306 echo 'const char version[] = "'"`sed q ${srcdir}/../../gdb/version.in`"'";' >> version.c-tmp
307 mv version.c-tmp version.c
308version.o: version.c $(version_h)
309
310
c906108c
SS
311#
312# Rules for building sim-* components. Triggered by listing the corresponding
313# .o file in the list of simulator targets.
314#
315
316sim_main_headers = \
317 sim-main.h \
08cd3760
RE
318 $(sim-assert_h) \
319 $(sim-base_h) \
320 $(sim-cpu_h) \
321 $(sim-engine_h) \
322 $(sim-events_h) \
323 $(sim-memopt_h) \
324 $(sim-model_h) \
325 $(sim-module_h) \
326 $(sim-profile_h) \
327 $(sim-trace_h) \
328 $(sim-watch_h) \
329 $(sim-basics_h) \
c906108c
SS
330 $(SIM_EXTRA_DEPS)
331
332# Exported version of sim_main_headers.
333SIM_MAIN_DEPS = \
334 $(sim_main_headers)
335
08cd3760
RE
336sim-alu_h = $(srccom)/sim-alu.h
337sim-arange_h = $(srccom)/sim-arange.h \
338 $(srccom)/sim-arange.c
c906108c 339sim-assert_h = $(srccom)/sim-assert.h
08cd3760
RE
340sim-base_h = $(srccom)/sim-base.h \
341 $(sim-module_h) \
342 $(sim-trace_h) \
343 $(sim-core_h) \
344 $(sim-events_h) \
345 $(sim-profile_h) \
346 $(sim-model_h) \
347 $(sim-io_h) \
348 $(sim-engine_h) \
349 $(sim-watch_h) \
350 $(sim-memopt_h) \
351 $(sim-cpu_h)
352sim-basics_h = $(srccom)/sim-basics.h \
c87368ac
RE
353 ../common/cconfig.h \
354 tconfig.h \
08cd3760 355 $(sim-config_h) \
70ae6611 356 $(callback_h) \
08cd3760
RE
357 $(sim-inline_h) \
358 $(sim-types_h) \
359 $(sim-bits_h) \
360 $(sim-endian_h) \
361 $(sim-signal_h) \
362 $(sim-arange_h) \
363 $(sim-utils_h)
364sim-bits_h = $(srccom)/sim-bits.h \
365 $(srccom)/sim-bits.c
c906108c 366sim-config_h = $(srccom)/sim-config.h
c906108c 367sim-core_h = $(srccom)/sim-core.h
08cd3760
RE
368sim-cpu_h = $(srccom)/sim-cpu.h
369sim-endian_h = $(srccom)/sim-endian.h \
370 $(srccom)/sim-endian.c
c906108c
SS
371sim-engine_h = $(srccom)/sim-engine.h
372sim-events_h = $(srccom)/sim-events.h
373sim-fpu_h = $(srccom)/sim-fpu.h
08cd3760
RE
374sim-hw_h = $(srccom)/sim-hw.h
375sim-inline_h = $(srccom)/sim-inline.h
c906108c 376sim-io_h = $(srccom)/sim-io.h
08cd3760
RE
377sim-memopt_h = $(srccom)/sim-memopt.h
378sim-model_h = $(srccom)/sim-model.h
379sim-module_h = $(srccom)/sim-module.h
380sim-n-bits_h = $(srccom)/sim-n-bits.h
381sim-n-core_h = $(srccom)/sim-n-core.h
382sim-n-endian_h = $(srccom)/sim-n-endian.h
c906108c 383sim-options_h = $(srccom)/sim-options.h
08cd3760 384sim-profile_h = $(srccom)/sim-profile.h
c906108c 385sim-signal_h = $(srccom)/sim-signal.h
08cd3760
RE
386sim-trace_h = $(srccom)/sim-trace.h
387sim-types_h = $(srccom)/sim-types.h
388sim-utils_h = $(srccom)/sim-utils.h
389sim-watch_h = $(srccom)/sim-watch.h
c906108c
SS
390
391hw-alloc_h = $(srccom)/hw-alloc.h
392hw-base_h = $(srccom)/hw-base.h
393hw-device_h = $(srccom)/hw-device.h
394hw-events_h = $(srccom)/hw-events.h
395hw-handles_h = $(srccom)/hw-handles.h
396hw-instances_h = $(srccom)/hw-instances.h
397hw-ports_h = $(srccom)/hw-ports.h
398hw-properties_h = $(srccom)/hw-properties.h
399hw-tree_h = $(srccom)/hw-tree.h
400
401hw_main_headers = \
402 $(srccom)/hw-main.h \
403 $(hw-alloc_h) \
404 $(hw-base_h) \
405 $(hw-device_h) \
406 $(hw-events_h) \
407 $(hw-instances_h) \
408 $(hw-handles_h) \
409 $(hw-ports_h) \
410 $(hw-properties_h) \
411
412# FIXME: If this complicated way of building .o files from ../common is
413# necessary, the reason should be documented here.
414
415BUILT_SRC_FROM_COMMON= \
416 sim-inline.c
417
418sim-abort.o: $(srccom)/sim-abort.c \
419 $(SIM_EXTRA_DEPS)
420 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
421
422sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
423 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
424
425sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
426 $(SIM_EXTRA_DEPS)
427 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
428
2419798b
MF
429sim-command.o: $(srccom)/sim-command.c $(sim_main_headers)
430 $(CC) -c $(srccom)/sim-command.c $(ALL_CFLAGS)
431
80d35d90 432sim-config.o: $(srccom)/sim-config.c $(sim-config_h) sim-main.h \
c906108c
SS
433 $(SIM_EXTRA_DEPS)
434 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
435
436sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
437 $(sim-core_h) $(sim-n-core_h)
438 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
439
440sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
441 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
442
443sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
444 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
445
446sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
447 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
448
80d35d90 449sim-events.o: $(srccom)/sim-events.c $(sim-events_h) sim-main.h \
c906108c
SS
450 $(SIM_EXTRA_DEPS)
451 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
452
453sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
454 $(SIM_EXTRA_DEPS)
455 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
456
3c25f8c7 457sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
458 $(SIM_EXTRA_DEPS)
459 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
460
3c25f8c7 461sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
c906108c
SS
462 $(SIM_EXTRA_DEPS)
463 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
464
465sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
466 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
467
3c25f8c7 468sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
469 $(SIM_EXTRA_DEPS)
470 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
471
472sim-inline.c: $(srccom)/sim-inline.c
473 rm -f $@ tmp-$@
474 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
475 cat $(srccom)/$@ >> tmp-$@
476 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
477
3c25f8c7
AC
478sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
479 targ-vals.h
c906108c
SS
480 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
481
482sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
483 $(sim-io_h)
484 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
485
486sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
487 $(sim-io_h)
488 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
489
490sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
491 $(sim-options_h) $(sim-io_h)
492 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
493
3c25f8c7 494sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
495 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
496
3c25f8c7 497sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
498 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
499
3c25f8c7 500sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
501 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
502
503sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
504 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
505
506sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
507 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
508
509sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
510 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
511
512sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
513 $(sim-options_h) $(sim-io_h)
514 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
515
516sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
517 $(sim-options_h) $(sim-io_h)
518 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
519
520sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
521 $(sim-io_h)
522 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
523
524sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
525 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
526
527sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
528 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
529
c87368ac 530sim-load.o: $(srccom)/sim-load.c $(callback_h) $(sim-basics_h) $(remote_sim_h)
c906108c
SS
531 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
532
c906108c
SS
533
534# FIXME This is one very simple-minded way of generating the file hw-config.h
535hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
536 rm -f tmp-hw.h
537 echo "/* generated by Makefile */" > tmp-hw.h
538 for hw in $(SIM_HW) ; do \
539 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
540 done >> tmp-hw.h
541 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
542 for hw in $(SIM_HW) ; do \
543 echo " dv_$${hw}_descriptor," ; \
544 done >> tmp-hw.h
545 echo " NULL," >> tmp-hw.h
546 echo "};" >> tmp-hw.h
547 mv tmp-hw.h hw-config.h
548
549hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
550 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
551
552hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
553 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
554
555hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
556 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
557
558hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
559 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
560
561test-hw-events: $(srccom)/hw-events.c libsim.a
562 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
563 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
564
565hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
566 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
567
568hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
569 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
570
571hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
572 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
573
574hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
575 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
576
577hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
578 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
579
580# Devices.
581
66ee2731
MF
582dv-cfi.o: $(srccom)/dv-cfi.c $(hw_main_headers) $(sim_main_headers)
583 $(CC) -c $(srccom)/dv-cfi.c $(ALL_CFLAGS)
584
c906108c
SS
585dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
586 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
587
588dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
589 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
590
591dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
592 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
593
594dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
595 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
596
597
3c25f8c7 598nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
c906108c
SS
599 $(sim_main_headers)
600 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
601
602# CGEN support.
603
604# For use in Makefile.in for cpu-specific files.
605CGEN_MAIN_CPU_DEPS = \
606 $(SIM_MAIN_DEPS) \
c906108c 607 $(srccom)/cgen-ops.h \
80532737 608 $(srccom)/cgen-mem.h
c906108c
SS
609
610cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
611 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
612
613cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
614 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
615
616cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
617 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
618
43ff13b4
JM
619cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
620 $(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
621
622cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
623 $(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
624
c906108c
SS
625cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
626 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
627 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
628
d4f3574e
SS
629cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
630 $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
631 $(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
632
c906108c
SS
633# Support targets.
634
635install: install-common $(SIM_EXTRA_INSTALL)
636
637install-common: installdirs
638 n=`echo run | sed '$(program_transform_name)'`; \
149cfe5b 639 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
c906108c 640 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
149cfe5b
DJ
641 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
642 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
c906108c
SS
643
644installdirs:
149cfe5b
DJ
645 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
646 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
c906108c
SS
647
648check:
649 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
650
651info:
652clean-info:
653install-info:
654
655.NOEXPORT:
656MAKEOVERRIDES=
657
658tags etags: TAGS
659
660# Macros like EXTERN_SIM_CORE confuse tags.
661# And the sim-n-foo.h files create functions that can't be found either.
662TAGS: force
663 cd $(srcdir) && \
664 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
665 *.[ch] ../common/*.[ch]
666
667clean: $(SIM_EXTRA_CLEAN)
668 rm -f *.[oa] *~ core
4ec242d7 669 rm -f run$(EXEEXT) libsim.a
c906108c
SS
670 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
671 if [ ! -f Make-common.in ] ; then \
672 rm -f $(BUILT_SRC_FROM_COMMON) ; \
673 fi
674 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
675
d690312f 676distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
c906108c
SS
677 rm -f TAGS
678 rm -f Makefile config.cache config.log config.status .gdbinit
679 rm -f tconfig.h config.h stamp-h
680 rm -f targ-vals.def
681
682.c.o:
683 $(CC) -c $(ALL_CFLAGS) $<
684
685# Dummy target to force execution of dependent targets.
686force:
687
688Makefile: Makefile.in $(srccom)/Make-common.in config.status
689 CONFIG_HEADERS= $(SHELL) ./config.status
690
691config.status: configure
692 $(SHELL) ./config.status --recheck
693
694config.h: stamp-h ; @true
695stamp-h: config.in config.status
696 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
697
698.gdbinit: # config.status $(srccom)/gdbinit.in
699 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
700
701
604259a0
FCE
702# CGEN support
703
704CGENDIR = @cgendir@
9ab46d53 705CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
604259a0 706CGENFLAGS = -v
e3e473da 707CGEN_CPU_DIR = $(CGENDIR)/cpu
604259a0 708
6a8b8615
DE
709# Most ports use the files here instead of cgen/cpu.
710CPU_DIR = $(srcroot)/cpu
711
7ede505a 712CGEN_READ_SCM = $(CGENDIR)/sim.scm
e3e473da
BE
713CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
714CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
715CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
716CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
604259a0
FCE
717
718# Various choices for which cpu specific files to generate.
2c2a86d7
DE
719# These are passed to cgen.sh in the "extrafiles" argument.
720CGEN_CPU_EXTR = /extr/
721CGEN_CPU_READ = /read/
722CGEN_CPU_WRITE = /write/
723CGEN_CPU_SEM = /sem/
724CGEN_CPU_SEMSW = /semsw/
604259a0
FCE
725
726CGEN_FLAGS_TO_PASS = \
9ab46d53 727 CGEN='$(CGEN)' \
604259a0
FCE
728 CGENFLAGS="$(CGENFLAGS)"
729
730# We store the generated files in the source directory until we decide to
731# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
732
733cgen-arch: force
734 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
735 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
736 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
737 $(archfile) ignored
3c25f8c7 738
604259a0
FCE
739cgen-cpu: force
740 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
741 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
742 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
743 $(archfile) "$(EXTRAFILES)"
604259a0 744
c79688eb
BE
745cgen-defs: force
746 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
747 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
748 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
749 $(archfile) ignored
c79688eb 750
604259a0
FCE
751cgen-decode: force
752 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
753 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
754 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
755 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
756
757cgen-cpu-decode: force
758 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
759 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
760 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
761 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
762
763cgen-desc: force
764 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
765 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81 766 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
ad6e5d2e 767 $(archfile) ignored $(opcfile)
604259a0 768
c906108c 769## End COMMON_POST_CONFIG_FRAG
This page took 0.522055 seconds and 4 git commands to generate.