]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/Make-common.in
*** empty log message ***
[thirdparty/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
c906108c 1# Makefile fragment for common parts of all simulators.
dc3cf14f 2# Copyright 1997, 1998, 1999, 2000, 2001, 2004, 2005, 2007, 2008, 2009, 2010
ef5a45ed 3# 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 \
c906108c
SS
165 sim-config.o \
166 sim-core.o \
167 sim-endian.o \
168 sim-events.o \
169 sim-fpu.o \
170 sim-io.o \
171 sim-info.o \
172 sim-load.o \
173 sim-memopt.o \
174 sim-module.o \
175 sim-options.o \
176 sim-profile.o \
177 sim-signal.o \
178 sim-trace.o \
179 sim-utils.o \
180 sim-watch.o \
181 \
182 $(SIM_HW_OBJS) \
183
184# Add this to SIM_EXTRA_DEPS.
185CGEN_INCLUDE_DEPS = \
186 $(srccom)/cgen-cpu.h \
187 $(srccom)/cgen-defs.h \
188 $(srccom)/cgen-engine.h \
189 $(srccom)/cgen-scache.h \
190 $(srccom)/cgen-sim.h \
191 $(srccom)/cgen-trace.h \
192 $(srccom)/cgen-types.h \
193 $(srcdir)/../../include/opcode/cgen.h
194
195## End COMMON_PRE_CONFIG_FRAG
196
197## COMMON_POST_CONFIG_FRAG
198
199CONFIG_CFLAGS = \
200 @DEFS@ \
201 $(SIM_CFLAGS) \
202 $(SIM_DEBUG) \
203 $(SIM_DEFAULT_MODEL) \
204 $(SIM_TRACE) \
205 $(SIM_PROFILE) \
206 $(SIM_BSWAP) \
207 $(SIM_ASSERT) \
208 $(SIM_ALIGNMENT) \
209 $(SIM_BITSIZE) \
210 $(SIM_ENDIAN) \
211 $(SIM_ENVIRONMENT) \
212 $(SIM_FLOAT) \
213 $(SIM_HW_CFLAGS) \
214 $(SIM_HOSTENDIAN) \
215 $(SIM_INLINE) \
216 $(SIM_PACKAGES) \
217 $(SIM_REGPARM) \
218 $(SIM_RESERVED_BITS) \
219 $(SIM_SCACHE) \
220 $(SIM_SMP) \
221 $(SIM_STDCALL) \
d4f3574e
SS
222 $(SIM_WARN_CFLAGS) \
223 $(SIM_WERROR_CFLAGS) \
c906108c
SS
224 $(SIM_XOR_ENDIAN) \
225 $(SIM_HARDWARE) \
226 $(SIM_EXTRA_CFLAGS) \
227 $(HDEFINES) $(TDEFINES)
228CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
229 -I../../include -I$(srcroot)/include \
230 -I../../bfd -I$(srcroot)/bfd \
231 -I../../opcodes -I$(srcroot)/opcodes \
20e95c23 232 @INCINTL@
c906108c
SS
233ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
234BUILD_CFLAGS = -g -O $(CSEARCH)
235
236COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
237
238LIBIBERTY_LIB = ../../libiberty/libiberty.a
239BFD_LIB = ../../bfd/libbfd.a
240OPCODES_LIB = ../../opcodes/libopcodes.a
20e95c23
DJ
241LIBINTL = @LIBINTL@
242LIBINTL_DEP = @LIBINTL_DEP@
c906108c 243CONFIG_LIBS = @LIBS@
20e95c23 244LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
c906108c 245 $(SIM_EXTRA_LIBDEPS)
20e95c23 246EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
c906108c
SS
247 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
248
6efef468 249LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
c906108c
SS
250
251RUNTESTFLAGS =
252
3c25f8c7
AC
253callback_h = $(srcroot)/include/gdb/callback.h
254remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
255
4ec242d7 256all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
c906108c
SS
257
258libsim.a: $(LIB_OBJS)
259 rm -f libsim.a
260 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
261 $(RANLIB) libsim.a
262
4ec242d7 263run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
be091327 264 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
c906108c
SS
265 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
266
3c25f8c7 267run.o: $(srccom)/run.c config.h tconfig.h $(remote_sim_h) $(callback_h)
c906108c
SS
268 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
269
270# FIXME: Ideally, callback.o and friends live in a library outside of
271# both the gdb and simulator source trees (e.g. devo/remote. Not
272# devo/libremote because this directory would contain more than just
273# a library).
274
3c25f8c7 275callback.o: $(srccom)/callback.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
276 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
277
3c25f8c7 278syscall.o: $(srccom)/syscall.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
279 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
280
281targ-map.o: targ-map.c targ-vals.h
282
283gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
284 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
285
286targ-vals.h targ-map.c: stamp-tvals
287stamp-tvals: gentmap
288 rm -f tmp-tvals.h tmp-tmap.c
289 ./gentmap -h >tmp-tvals.h
290 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
291 ./gentmap -c >tmp-tmap.c
292 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
293 touch stamp-tvals
294
6efef468
JM
295version.c: Makefile ../../gdb/version.in
296 rm -f version.c-tmp version.c
297 echo '#include "version.h"' >> version.c-tmp
298 echo 'const char version[] = "'"`sed q ${srcdir}/../../gdb/version.in`"'";' >> version.c-tmp
299 mv version.c-tmp version.c
300version.o: version.c $(version_h)
301
302
c906108c
SS
303#
304# Rules for building sim-* components. Triggered by listing the corresponding
305# .o file in the list of simulator targets.
306#
307
308sim_main_headers = \
309 sim-main.h \
08cd3760
RE
310 $(sim-assert_h) \
311 $(sim-base_h) \
312 $(sim-cpu_h) \
313 $(sim-engine_h) \
314 $(sim-events_h) \
315 $(sim-memopt_h) \
316 $(sim-model_h) \
317 $(sim-module_h) \
318 $(sim-profile_h) \
319 $(sim-trace_h) \
320 $(sim-watch_h) \
321 $(sim-basics_h) \
c906108c
SS
322 $(SIM_EXTRA_DEPS)
323
324# Exported version of sim_main_headers.
325SIM_MAIN_DEPS = \
326 $(sim_main_headers)
327
08cd3760
RE
328sim-alu_h = $(srccom)/sim-alu.h
329sim-arange_h = $(srccom)/sim-arange.h \
330 $(srccom)/sim-arange.c
c906108c 331sim-assert_h = $(srccom)/sim-assert.h
08cd3760
RE
332sim-base_h = $(srccom)/sim-base.h \
333 $(sim-module_h) \
334 $(sim-trace_h) \
335 $(sim-core_h) \
336 $(sim-events_h) \
337 $(sim-profile_h) \
338 $(sim-model_h) \
339 $(sim-io_h) \
340 $(sim-engine_h) \
341 $(sim-watch_h) \
342 $(sim-memopt_h) \
343 $(sim-cpu_h)
344sim-basics_h = $(srccom)/sim-basics.h \
c87368ac
RE
345 ../common/cconfig.h \
346 tconfig.h \
08cd3760 347 $(sim-config_h) \
70ae6611 348 $(callback_h) \
08cd3760
RE
349 $(sim-inline_h) \
350 $(sim-types_h) \
351 $(sim-bits_h) \
352 $(sim-endian_h) \
353 $(sim-signal_h) \
354 $(sim-arange_h) \
355 $(sim-utils_h)
356sim-bits_h = $(srccom)/sim-bits.h \
357 $(srccom)/sim-bits.c
c906108c 358sim-config_h = $(srccom)/sim-config.h
c906108c 359sim-core_h = $(srccom)/sim-core.h
08cd3760
RE
360sim-cpu_h = $(srccom)/sim-cpu.h
361sim-endian_h = $(srccom)/sim-endian.h \
362 $(srccom)/sim-endian.c
c906108c
SS
363sim-engine_h = $(srccom)/sim-engine.h
364sim-events_h = $(srccom)/sim-events.h
365sim-fpu_h = $(srccom)/sim-fpu.h
08cd3760
RE
366sim-hw_h = $(srccom)/sim-hw.h
367sim-inline_h = $(srccom)/sim-inline.h
c906108c 368sim-io_h = $(srccom)/sim-io.h
08cd3760
RE
369sim-memopt_h = $(srccom)/sim-memopt.h
370sim-model_h = $(srccom)/sim-model.h
371sim-module_h = $(srccom)/sim-module.h
372sim-n-bits_h = $(srccom)/sim-n-bits.h
373sim-n-core_h = $(srccom)/sim-n-core.h
374sim-n-endian_h = $(srccom)/sim-n-endian.h
c906108c 375sim-options_h = $(srccom)/sim-options.h
08cd3760 376sim-profile_h = $(srccom)/sim-profile.h
c906108c 377sim-signal_h = $(srccom)/sim-signal.h
08cd3760
RE
378sim-trace_h = $(srccom)/sim-trace.h
379sim-types_h = $(srccom)/sim-types.h
380sim-utils_h = $(srccom)/sim-utils.h
381sim-watch_h = $(srccom)/sim-watch.h
c906108c
SS
382
383hw-alloc_h = $(srccom)/hw-alloc.h
384hw-base_h = $(srccom)/hw-base.h
385hw-device_h = $(srccom)/hw-device.h
386hw-events_h = $(srccom)/hw-events.h
387hw-handles_h = $(srccom)/hw-handles.h
388hw-instances_h = $(srccom)/hw-instances.h
389hw-ports_h = $(srccom)/hw-ports.h
390hw-properties_h = $(srccom)/hw-properties.h
391hw-tree_h = $(srccom)/hw-tree.h
392
393hw_main_headers = \
394 $(srccom)/hw-main.h \
395 $(hw-alloc_h) \
396 $(hw-base_h) \
397 $(hw-device_h) \
398 $(hw-events_h) \
399 $(hw-instances_h) \
400 $(hw-handles_h) \
401 $(hw-ports_h) \
402 $(hw-properties_h) \
403
404# FIXME: If this complicated way of building .o files from ../common is
405# necessary, the reason should be documented here.
406
407BUILT_SRC_FROM_COMMON= \
408 sim-inline.c
409
410sim-abort.o: $(srccom)/sim-abort.c \
411 $(SIM_EXTRA_DEPS)
412 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
413
414sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
415 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
416
417sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
418 $(SIM_EXTRA_DEPS)
419 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
420
80d35d90 421sim-config.o: $(srccom)/sim-config.c $(sim-config_h) sim-main.h \
c906108c
SS
422 $(SIM_EXTRA_DEPS)
423 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
424
425sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
426 $(sim-core_h) $(sim-n-core_h)
427 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
428
429sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
430 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
431
432sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
433 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
434
435sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
436 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
437
80d35d90 438sim-events.o: $(srccom)/sim-events.c $(sim-events_h) sim-main.h \
c906108c
SS
439 $(SIM_EXTRA_DEPS)
440 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
441
442sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
443 $(SIM_EXTRA_DEPS)
444 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
445
3c25f8c7 446sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
447 $(SIM_EXTRA_DEPS)
448 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
449
3c25f8c7 450sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
c906108c
SS
451 $(SIM_EXTRA_DEPS)
452 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
453
454sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
455 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
456
3c25f8c7 457sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
458 $(SIM_EXTRA_DEPS)
459 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
460
461sim-inline.c: $(srccom)/sim-inline.c
462 rm -f $@ tmp-$@
463 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
464 cat $(srccom)/$@ >> tmp-$@
465 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
466
3c25f8c7
AC
467sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
468 targ-vals.h
c906108c
SS
469 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
470
471sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
472 $(sim-io_h)
473 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
474
475sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
476 $(sim-io_h)
477 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
478
479sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
480 $(sim-options_h) $(sim-io_h)
481 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
482
3c25f8c7 483sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
484 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
485
3c25f8c7 486sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
487 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
488
3c25f8c7 489sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
490 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
491
492sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
493 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
494
495sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
496 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
497
498sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
499 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
500
501sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
502 $(sim-options_h) $(sim-io_h)
503 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
504
505sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
506 $(sim-options_h) $(sim-io_h)
507 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
508
509sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
510 $(sim-io_h)
511 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
512
513sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
514 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
515
516sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
517 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
518
c87368ac 519sim-load.o: $(srccom)/sim-load.c $(callback_h) $(sim-basics_h) $(remote_sim_h)
c906108c
SS
520 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
521
c906108c
SS
522
523# FIXME This is one very simple-minded way of generating the file hw-config.h
524hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
525 rm -f tmp-hw.h
526 echo "/* generated by Makefile */" > tmp-hw.h
527 for hw in $(SIM_HW) ; do \
528 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
529 done >> tmp-hw.h
530 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
531 for hw in $(SIM_HW) ; do \
532 echo " dv_$${hw}_descriptor," ; \
533 done >> tmp-hw.h
534 echo " NULL," >> tmp-hw.h
535 echo "};" >> tmp-hw.h
536 mv tmp-hw.h hw-config.h
537
538hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
539 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
540
541hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
542 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
543
544hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
545 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
546
547hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
548 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
549
550test-hw-events: $(srccom)/hw-events.c libsim.a
551 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
552 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
553
554hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
555 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
556
557hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
558 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
559
560hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
561 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
562
563hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
564 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
565
566hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
567 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
568
569# Devices.
570
571dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
572 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
573
574dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
575 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
576
577dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
578 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
579
580dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
581 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
582
583
3c25f8c7 584nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
c906108c
SS
585 $(sim_main_headers)
586 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
587
588# CGEN support.
589
590# For use in Makefile.in for cpu-specific files.
591CGEN_MAIN_CPU_DEPS = \
592 $(SIM_MAIN_DEPS) \
593 $(CGEN_INCLUDE_DEPS) \
594 $(srccom)/cgen-ops.h \
43ff13b4 595 $(srccom)/cgen-mem.h \
d4f3574e 596 $(srccom)/cgen-par.h \
43ff13b4 597 $(srccom)/cgen-fpu.h
c906108c
SS
598
599cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
600 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
601
602cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
603 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
604
605cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
606 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
607
43ff13b4
JM
608cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
609 $(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
610
611cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
612 $(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
613
c906108c
SS
614cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
615 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
616 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
617
d4f3574e
SS
618cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
619 $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
620 $(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
621
c906108c
SS
622# Support targets.
623
624install: install-common $(SIM_EXTRA_INSTALL)
625
626install-common: installdirs
627 n=`echo run | sed '$(program_transform_name)'`; \
149cfe5b 628 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
c906108c 629 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
149cfe5b
DJ
630 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
631 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
c906108c
SS
632
633installdirs:
149cfe5b
DJ
634 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
635 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
c906108c
SS
636
637check:
638 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
639
640info:
641clean-info:
642install-info:
643
644.NOEXPORT:
645MAKEOVERRIDES=
646
647tags etags: TAGS
648
649# Macros like EXTERN_SIM_CORE confuse tags.
650# And the sim-n-foo.h files create functions that can't be found either.
651TAGS: force
652 cd $(srcdir) && \
653 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
654 *.[ch] ../common/*.[ch]
655
656clean: $(SIM_EXTRA_CLEAN)
657 rm -f *.[oa] *~ core
4ec242d7 658 rm -f run$(EXEEXT) libsim.a
c906108c
SS
659 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
660 if [ ! -f Make-common.in ] ; then \
661 rm -f $(BUILT_SRC_FROM_COMMON) ; \
662 fi
663 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
664
d690312f 665distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
c906108c
SS
666 rm -f TAGS
667 rm -f Makefile config.cache config.log config.status .gdbinit
668 rm -f tconfig.h config.h stamp-h
669 rm -f targ-vals.def
670
671.c.o:
672 $(CC) -c $(ALL_CFLAGS) $<
673
674# Dummy target to force execution of dependent targets.
675force:
676
677Makefile: Makefile.in $(srccom)/Make-common.in config.status
678 CONFIG_HEADERS= $(SHELL) ./config.status
679
680config.status: configure
681 $(SHELL) ./config.status --recheck
682
683config.h: stamp-h ; @true
684stamp-h: config.in config.status
685 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
686
687.gdbinit: # config.status $(srccom)/gdbinit.in
688 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
689
690
604259a0
FCE
691# CGEN support
692
693CGENDIR = @cgendir@
9ab46d53 694CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
604259a0 695CGENFLAGS = -v
e3e473da 696CGEN_CPU_DIR = $(CGENDIR)/cpu
604259a0 697
6a8b8615
DE
698# Most ports use the files here instead of cgen/cpu.
699CPU_DIR = $(srcroot)/cpu
700
7ede505a 701CGEN_READ_SCM = $(CGENDIR)/sim.scm
e3e473da
BE
702CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
703CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
704CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
705CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
604259a0
FCE
706
707# Various choices for which cpu specific files to generate.
2c2a86d7
DE
708# These are passed to cgen.sh in the "extrafiles" argument.
709CGEN_CPU_EXTR = /extr/
710CGEN_CPU_READ = /read/
711CGEN_CPU_WRITE = /write/
712CGEN_CPU_SEM = /sem/
713CGEN_CPU_SEMSW = /semsw/
604259a0
FCE
714
715CGEN_FLAGS_TO_PASS = \
9ab46d53 716 CGEN='$(CGEN)' \
604259a0
FCE
717 CGENFLAGS="$(CGENFLAGS)"
718
719# We store the generated files in the source directory until we decide to
720# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
721
722cgen-arch: force
723 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
724 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
725 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
726 $(archfile) ignored
3c25f8c7 727
604259a0
FCE
728cgen-cpu: force
729 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
730 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
731 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
732 $(archfile) "$(EXTRAFILES)"
604259a0 733
c79688eb
BE
734cgen-defs: force
735 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
736 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
737 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
738 $(archfile) ignored
c79688eb 739
604259a0
FCE
740cgen-decode: force
741 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
742 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
743 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
744 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
745
746cgen-cpu-decode: force
747 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
748 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
749 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
750 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
751
752cgen-desc: force
753 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
754 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81 755 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
ad6e5d2e 756 $(archfile) ignored $(opcfile)
604259a0 757
c906108c 758## End COMMON_POST_CONFIG_FRAG