* cgen-defs.h: New file, old cgen-sim.h.
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
f2de7dfd 1# Makefile fragment for common parts of all simulators.
3618a6e9 2# Copyright (C) 1997, 1998 Free Software Foundation, Inc.
f2de7dfd
AC
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@
38377b3a 40srccom = $(srcdir)/../common
f2de7dfd
AC
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
fc4198bb
TT
60# This can be referenced by the gettext configuration code.
61top_builddir = ..
62
08bae91b 63EXEEXT = @EXEEXT@
63330b2e 64SHELL = @SHELL@
f2de7dfd 65
6808fd61 66INSTALL = @INSTALL@
f2de7dfd
AC
67INSTALL_PROGRAM = @INSTALL_PROGRAM@
68INSTALL_DATA = @INSTALL_DATA@
f2de7dfd
AC
69
70CC = @CC@
71CC_FOR_BUILD = @CC_FOR_BUILD@
72CFLAGS = @CFLAGS@
73SIM_BSWAP = @sim_bswap@
74SIM_CFLAGS = @sim_cflags@
75SIM_DEBUG = @sim_debug@
f2de7dfd 76SIM_TRACE = @sim_trace@
717dbb29 77SIM_PROFILE = @sim_profile@
a77aa7ec 78
92f91d1f
AC
79SIM_ASSERT = @sim_assert@
80SIM_ALIGNMENT = @sim_alignment@
7456a10d 81SIM_BITSIZE = @sim_bitsize@
4141b1c6 82SIM_DEFAULT_MODEL = @sim_default_model@
92f91d1f 83SIM_ENDIAN = @sim_endian@
22469a10 84SIM_ENVIRONMENT = @sim_environment@
92f91d1f 85SIM_FLOAT = @sim_float@
f872d0d6
AC
86SIM_HW_CFLAGS = @sim_hw_cflags@
87SIM_HW_OBJS = @sim_hw_objs@
278bda40 88SIM_HW = @sim_hw@
92f91d1f
AC
89SIM_HOSTENDIAN = @sim_hostendian@
90SIM_INLINE = @sim_inline@
91SIM_PACKAGES = @sim_packages@
92SIM_REGPARM = @sim_regparm@
93SIM_RESERVED_BITS = @sim_reserved_bits@
4141b1c6 94SIM_SCACHE = @sim_scache@
92f91d1f
AC
95SIM_SMP = @sim_smp@
96SIM_STDCALL = @sim_stdcall@
b9a9cde4 97SIM_WARNINGS = @build_warnings@
92f91d1f
AC
98SIM_XOR_ENDIAN = @sim_xor_endian@
99
f2de7dfd
AC
100HDEFINES = @HDEFINES@
101TDEFINES =
102
103AR = @AR@
104AR_FLAGS = rc
105RANLIB = @RANLIB@
106MAKEINFO = makeinfo
107
f7abc1ca
DE
108DEP = $(srcroot)/mkdep
109
f2de7dfd 110# Each simulator's Makefile.in defines one or more of these variables
0f2811d1
DE
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.
f2de7dfd
AC
114
115# List of object files, less common parts.
116SIM_OBJS =
6808fd61
ILT
117# List of extra dependencies.
118# Generally this consists of simulator specific files included by sim-main.h.
119SIM_EXTRA_DEPS =
f2de7dfd
AC
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
e5ce1670
DE
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
f872d0d6 144SIM_COMMON_HW_OBJS = \
69be0d4c 145 hw-alloc.o \
05f6bf9c 146 hw-base.o \
f872d0d6 147 hw-device.o \
39e953a7 148 hw-events.o \
05f6bf9c
AC
149 hw-handles.o \
150 hw-instances.o \
f872d0d6
AC
151 hw-ports.o \
152 hw-properties.o \
f872d0d6
AC
153 hw-tree.o \
154 sim-hw.o \
155
e5ce1670 156SIM_NEW_COMMON_OBJS = \
b61e2e14 157 sim-arange.o \
e5ce1670
DE
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 \
0e701ac3 166 sim-info.o \
e5ce1670
DE
167 sim-load.o \
168 sim-memopt.o \
169 sim-module.o \
170 sim-options.o \
171 sim-profile.o \
1ebc7e0e 172 sim-signal.o \
e5ce1670
DE
173 sim-trace.o \
174 sim-utils.o \
63330b2e
SG
175 sim-watch.o \
176 \
177 $(SIM_HW_OBJS) \
63330b2e 178
b9a9cde4 179CGEN_INCLUDE_DEPS = \
b9a9cde4 180 $(srccom)/cgen-cpu.h \
b61e2e14
DE
181 $(srccom)/cgen-scache.h \
182 $(srccom)/cgen-sim.h \
b9a9cde4 183 $(srccom)/cgen-trace.h \
b61e2e14 184 $(srccom)/cgen-types.h \
b9a9cde4 185 $(srcdir)/../../include/opcode/cgen.h
f872d0d6 186
f2de7dfd
AC
187## End COMMON_PRE_CONFIG_FRAG
188
189## COMMON_POST_CONFIG_FRAG
190
63330b2e
SG
191CONFIG_CFLAGS = \
192 @DEFS@ \
92f91d1f
AC
193 $(SIM_CFLAGS) \
194 $(SIM_DEBUG) \
4141b1c6 195 $(SIM_DEFAULT_MODEL) \
92f91d1f
AC
196 $(SIM_TRACE) \
197 $(SIM_PROFILE) \
198 $(SIM_BSWAP) \
199 $(SIM_ASSERT) \
200 $(SIM_ALIGNMENT) \
7456a10d 201 $(SIM_BITSIZE) \
92f91d1f 202 $(SIM_ENDIAN) \
22469a10 203 $(SIM_ENVIRONMENT) \
92f91d1f 204 $(SIM_FLOAT) \
f872d0d6 205 $(SIM_HW_CFLAGS) \
92f91d1f
AC
206 $(SIM_HOSTENDIAN) \
207 $(SIM_INLINE) \
208 $(SIM_PACKAGES) \
209 $(SIM_REGPARM) \
210 $(SIM_RESERVED_BITS) \
4141b1c6 211 $(SIM_SCACHE) \
92f91d1f
AC
212 $(SIM_SMP) \
213 $(SIM_STDCALL) \
214 $(SIM_WARNINGS) \
215 $(SIM_XOR_ENDIAN) \
63330b2e 216 $(SIM_HARDWARE) \
92f91d1f
AC
217 $(SIM_EXTRA_CFLAGS) \
218 $(HDEFINES) $(TDEFINES)
38377b3a 219CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
f2de7dfd 220 -I../../include -I$(srcroot)/include \
a77aa7ec 221 -I../../bfd -I$(srcroot)/bfd \
3618a6e9
MM
222 -I../../opcodes -I$(srcroot)/opcodes \
223 -I../../intl -I$(srcroot)/intl
f2de7dfd
AC
224ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
225BUILD_CFLAGS = -g -O $(CSEARCH)
226
f7abc1ca
DE
227COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
228
f2de7dfd
AC
229LIBIBERTY_LIB = ../../libiberty/libiberty.a
230BFD_LIB = ../../bfd/libbfd.a
231OPCODES_LIB = ../../opcodes/libopcodes.a
fc4198bb
TT
232INTLLIBS = @INTLLIBS@
233INTLDEPS = @INTLDEPS@
f2de7dfd 234CONFIG_LIBS = @LIBS@
fc4198bb 235LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
f2de7dfd 236 $(SIM_EXTRA_LIBDEPS)
fc4198bb 237EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
f2de7dfd
AC
238 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
239
f7abc1ca 240LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
f2de7dfd 241
3618a6e9
MM
242RUNTESTFLAGS =
243
22469a10 244all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit
f2de7dfd
AC
245
246libsim.a: $(LIB_OBJS)
247 rm -f libsim.a
fafce69a 248 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
f2de7dfd
AC
249 $(RANLIB) libsim.a
250
251run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
08bae91b 252 $(CC) $(ALL_CFLAGS) -o run$(EXEEXT) \
f2de7dfd
AC
253 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
254
38377b3a 255run.o: $(srccom)/run.c config.h tconfig.h \
22469a10 256 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h
38377b3a 257 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
f2de7dfd
AC
258
259# FIXME: Ideally, callback.o and friends live in a library outside of
260# both the gdb and simulator source trees (e.g. devo/remote. Not
261# devo/libremote because this directory would contain more than just
262# a library).
263
38377b3a 264callback.o: $(srccom)/callback.c config.h tconfig.h \
f2de7dfd 265 $(srcroot)/include/callback.h targ-vals.h
38377b3a 266 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
f2de7dfd 267
38377b3a 268syscall.o: $(srccom)/syscall.c config.h tconfig.h \
f7abc1ca 269 $(srcroot)/include/callback.h targ-vals.h
38377b3a 270 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
f7abc1ca 271
f2de7dfd
AC
272targ-map.o: targ-map.c targ-vals.h
273
38377b3a
DE
274gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
275 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
f2de7dfd 276
6cd37f15
DE
277targ-vals.h targ-map.c: stamp-tvals
278stamp-tvals: gentmap
279 rm -f tmp-tvals.h tmp-tmap.c
280 ./gentmap -h >tmp-tvals.h
63330b2e 281 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
6cd37f15 282 ./gentmap -c >tmp-tmap.c
63330b2e 283 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
6cd37f15 284 touch stamp-tvals
a35e91c3
AC
285
286#
287# Rules for building sim-* components. Triggered by listing the corresponding
288# .o file in the list of simulator targets.
289#
290
6808fd61
ILT
291sim_main_headers = \
292 sim-main.h \
08bae91b 293 $(srccom)/sim-assert.h \
38377b3a
DE
294 $(srccom)/sim-base.h \
295 $(srccom)/sim-basics.h \
08bae91b
JJ
296 $(srccom)/sim-config.h \
297 $(srccom)/sim-cpu.h \
298 $(srccom)/sim-engine.h \
299 $(srccom)/sim-events.h \
300 $(srccom)/sim-inline.h \
38377b3a
DE
301 $(srccom)/sim-memopt.h \
302 $(srccom)/sim-model.h \
303 $(srccom)/sim-module.h \
38377b3a 304 $(srccom)/sim-profile.h \
08bae91b
JJ
305 $(srccom)/sim-signal.h \
306 $(srccom)/sim-trace.h \
38377b3a 307 $(srccom)/sim-watch.h \
f7abc1ca
DE
308 tconfig.h \
309 $(SIM_EXTRA_DEPS)
6808fd61 310
38377b3a
DE
311sim-assert_h = $(srccom)/sim-assert.h
312sim-endian_h = $(srccom)/sim-endian.h
313sim-n-endian_h = $(srccom)/sim-n-endian.h
b61e2e14 314sim-arange_h = $(srccom)/sim-arange.h
38377b3a
DE
315sim-bits_h = $(srccom)/sim-bits.h
316sim-config_h = $(srccom)/sim-config.h
317sim-n-bits_h = $(srccom)/sim-n-bits.h
318sim-core_h = $(srccom)/sim-core.h
319sim-n-core_h = $(srccom)/sim-n-core.h
320sim-engine_h = $(srccom)/sim-engine.h
321sim-events_h = $(srccom)/sim-events.h
322sim-fpu_h = $(srccom)/sim-fpu.h
92fa4579
FCE
323# start-sanitize-gxsim
324sim-gx_h = $(srccom)/sim-gx.h
325# end-sanitize-gxsim
38377b3a
DE
326sim-io_h = $(srccom)/sim-io.h
327sim-options_h = $(srccom)/sim-options.h
328sim-break_h = $(srccom)/sim-break.h
1ebc7e0e 329sim-signal_h = $(srccom)/sim-signal.h
a35e91c3 330
69be0d4c 331hw-alloc_h = $(srccom)/hw-alloc.h
63330b2e
SG
332hw-base_h = $(srccom)/hw-base.h
333hw-device_h = $(srccom)/hw-device.h
39e953a7 334hw-events_h = $(srccom)/hw-events.h
05f6bf9c
AC
335hw-handles_h = $(srccom)/hw-handles.h
336hw-instances_h = $(srccom)/hw-instances.h
63330b2e
SG
337hw-ports_h = $(srccom)/hw-ports.h
338hw-properties_h = $(srccom)/hw-properties.h
339hw-tree_h = $(srccom)/hw-tree.h
340
48f83b1a
AC
341hw_main_headers = \
342 $(srccom)/hw-main.h \
69be0d4c 343 $(hw-alloc_h) \
63330b2e
SG
344 $(hw-base_h) \
345 $(hw-device_h) \
39e953a7 346 $(hw-events_h) \
63330b2e
SG
347 $(hw-instances_h) \
348 $(hw-handles_h) \
349 $(hw-ports_h) \
350 $(hw-properties_h) \
63330b2e 351
6808fd61 352# FIXME: If this complicated way of building .o files from ../common is
c967f187 353# necessary, the reason should be documented here.
6808fd61
ILT
354
355BUILT_SRC_FROM_COMMON= \
5dcf955d 356 sim-inline.c
6808fd61 357
38377b3a 358sim-abort.o: $(srccom)/sim-abort.c \
f7abc1ca 359 $(SIM_EXTRA_DEPS)
38377b3a 360 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
f03b093c 361
b61e2e14
DE
362sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
363 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
364
38377b3a 365sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
f7abc1ca 366 $(SIM_EXTRA_DEPS)
38377b3a 367 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
a35e91c3 368
38377b3a 369sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
189e2694 370 $(SIM_EXTRA_DEPS)
38377b3a 371 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
a35e91c3 372
189e2694 373sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
b9a9cde4 374 $(sim-core_h) $(sim-n-core_h)
38377b3a 375 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
a35e91c3 376
b9a9cde4 377sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
08bae91b
JJ
378 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
379
b9a9cde4 380sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
38377b3a 381 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
a35e91c3 382
38377b3a
DE
383sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
384 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
f03b093c 385
38377b3a 386sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
f7abc1ca 387 $(SIM_EXTRA_DEPS)
38377b3a 388 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
a35e91c3 389
38377b3a 390sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
f7abc1ca 391 $(SIM_EXTRA_DEPS)
38377b3a 392 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
fafce69a 393
92fa4579
FCE
394# start-sanitize-gxsim
395sim-gx.o: $(srccom)/sim-gx.c $(sim_main_headers) \
396 $(sim-gx_h) \
397 $(SIM_EXTRA_DEPS)
398 $(CC) -c $(srccom)/sim-gx.c $(ALL_CFLAGS)
399
400sim-gx-run.o: $(srccom)/sim-gx-run.c $(sim_main_headers) \
401 $(sim-gx_h) \
402 $(SIM_EXTRA_DEPS)
403 $(CC) -c $(srccom)/sim-gx-run.c $(ALL_CFLAGS)
404# end-sanitize-gxsim
405
38377b3a 406sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) \
22469a10 407 $(srcroot)/include/remote-sim.h \
f7abc1ca 408 $(SIM_EXTRA_DEPS)
38377b3a 409 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
3971886a 410
22469a10
DE
411sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) \
412 $(srcroot)/include/remote-sim.h \
f7abc1ca 413 $(SIM_EXTRA_DEPS)
38377b3a 414 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
92f91d1f 415
b9a9cde4 416sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
278bda40
AC
417 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
418
0e701ac3
AC
419sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) \
420 $(srcroot)/include/remote-sim.h \
421 $(SIM_EXTRA_DEPS)
422 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
423
38377b3a 424sim-inline.c: $(srccom)/sim-inline.c
a35e91c3 425 rm -f $@ tmp-$@
38377b3a
DE
426 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
427 cat $(srccom)/$@ >> tmp-$@
63330b2e 428 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
a35e91c3 429
22469a10
DE
430sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) \
431 $(srcroot)/include/remote-sim.h
38377b3a 432 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
a35e91c3 433
38377b3a 434sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
f7abc1ca 435 $(sim-io_h)
38377b3a 436 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
a34abff8 437
38377b3a 438sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
f7abc1ca 439 $(sim-io_h)
38377b3a 440 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
717dbb29 441
38377b3a 442sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
f7abc1ca 443 $(sim-options_h) $(sim-io_h)
38377b3a 444 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
0f2811d1 445
22469a10
DE
446sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) \
447 $(srcroot)/include/remote-sim.h
38377b3a 448 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
f03b093c 449
b9a9cde4
AC
450sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) \
451 $(srcroot)/include/remote-sim.h
452 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
453
22469a10
DE
454sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) \
455 $(srcroot)/include/remote-sim.h
38377b3a 456 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
f03b093c 457
38377b3a
DE
458sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
459 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
f03b093c 460
1ebc7e0e
DE
461sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
462 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
463
38377b3a
DE
464sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
465 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
f03b093c 466
38377b3a 467sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
f7abc1ca 468 $(sim-options_h) $(sim-io_h)
38377b3a 469 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
e9b2f579 470
38377b3a 471sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
f7abc1ca 472 $(sim-options_h) $(sim-io_h)
38377b3a 473 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
717dbb29 474
38377b3a 475sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
f7abc1ca 476 $(sim-io_h)
38377b3a 477 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
c967f187 478
38377b3a
DE
479sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
480 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
a35e91c3 481
38377b3a
DE
482sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
483 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
fafce69a 484
38377b3a
DE
485sim-load.o: $(srccom)/sim-load.c $(srcroot)/include/callback.h
486 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
0f2811d1 487
38377b3a 488sim-break.o: $(srccom)/sim-break.c $(sim_main_headers) \
f7abc1ca 489 $(sim_break_h)
38377b3a 490 $(CC) -c $(srccom)/sim-break.c $(ALL_CFLAGS)
b9d580a4 491
63330b2e 492
278bda40
AC
493# FIXME This is one very simple-minded way of generating the file hw-config.h
494hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
495 rm -f tmp-hw.h
496 echo "/* generated by Makefile */" > tmp-hw.h
497 for hw in $(SIM_HW) ; do \
48f83b1a 498 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
278bda40 499 done >> tmp-hw.h
48f83b1a 500 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
278bda40
AC
501 for hw in $(SIM_HW) ; do \
502 echo " dv_$${hw}_descriptor," ; \
503 done >> tmp-hw.h
504 echo " NULL," >> tmp-hw.h
505 echo "};" >> tmp-hw.h
506 mv tmp-hw.h hw-config.h
507
48f83b1a 508hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
69be0d4c
AC
509 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
510
48f83b1a 511hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
63330b2e
SG
512 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
513
48f83b1a 514hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
63330b2e
SG
515 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
516
48f83b1a 517hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
39e953a7
AC
518 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
519
05f6bf9c
AC
520test-hw-events: $(srccom)/hw-events.c libsim.a
521 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
522 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
523
48f83b1a 524hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
63330b2e
SG
525 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
526
48f83b1a 527hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
63330b2e
SG
528 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
529
48f83b1a 530hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
63330b2e
SG
531 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
532
48f83b1a 533hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
63330b2e
SG
534 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
535
48f83b1a 536hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
63330b2e
SG
537 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
538
b9a9cde4 539# Devices.
63330b2e 540
48f83b1a 541dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
63330b2e
SG
542 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
543
48f83b1a 544dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
63330b2e
SG
545 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
546
48f83b1a 547dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
63330b2e
SG
548 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
549
b9a9cde4
AC
550dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
551 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
552
63330b2e 553
38377b3a 554nrun.o: $(srccom)/nrun.c config.h tconfig.h \
22469a10
DE
555 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h \
556 $(sim_main_headers)
38377b3a 557 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
a35e91c3 558
c967f187
DE
559# CGEN support.
560
b9a9cde4
AC
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)
38377b3a 565 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
c967f187 566
b9a9cde4 567cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
38377b3a 568 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
c967f187 569
38377b3a 570cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
b61e2e14 571 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
38377b3a 572 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
c967f187
DE
573
574# Support targets.
575
f2de7dfd
AC
576install: install-common $(SIM_EXTRA_INSTALL)
577
6808fd61
ILT
578install-common: installdirs
579 n=`echo run | sed '$(program_transform_name)'`; \
b9a9cde4 580 $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n$(EXEEXT)
08bae91b 581 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
6cad2395
JJ
582 $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \
583 ( cd $(libdir) ; $(RANLIB) $$n )
6808fd61
ILT
584
585installdirs:
586 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
f2de7dfd
AC
587
588check:
3618a6e9 589 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
f2de7dfd
AC
590
591info:
592clean-info:
593install-info:
594
595.NOEXPORT:
596MAKEOVERRIDES=
597
598tags etags: TAGS
599
84c6d152
DE
600# Macros like EXTERN_SIM_CORE confuse tags.
601# And the sim-n-foo.h files create functions that can't be found either.
f2de7dfd 602TAGS: force
84c6d152
DE
603 cd $(srcdir) && \
604 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
605 *.[ch] ../common/*.[ch]
f2de7dfd 606
717dbb29 607clean: $(SIM_EXTRA_CLEAN)
f2de7dfd
AC
608 rm -f *.[oa] *~ core
609 rm -f run libsim.a
6cd37f15 610 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
f7abc1ca 611 if [ ! -f Make-common.in ] ; then \
5dcf955d
DE
612 rm -f $(BUILT_SRC_FROM_COMMON) ; \
613 fi
b9a9cde4 614 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
f2de7dfd 615
717dbb29 616distclean mostlyclean maintainer-clean realclean: clean
f2de7dfd 617 rm -f TAGS
88d5f8e8 618 rm -f Makefile config.cache config.log config.status .gdbinit
f2de7dfd 619 rm -f tconfig.h config.h stamp-h
0f399b0c 620 rm -f targ-vals.def
f2de7dfd
AC
621
622.c.o:
623 $(CC) -c $(ALL_CFLAGS) $<
624
625# Dummy target to force execution of dependent targets.
626force:
627
38377b3a 628Makefile: Makefile.in $(srccom)/Make-common.in config.status
f2de7dfd
AC
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
38377b3a 638.gdbinit: # config.status $(srccom)/gdbinit.in
88d5f8e8
DE
639 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
640
36de6f40
DE
641# start-sanitize-cygnus
642
189e2694
DE
643# CGEN support
644
b9a9cde4
AC
645CGENDIR = @cgendir@
646CGEN = @cgen@
647CGENFLAGS = -v
648srccgen = $(CGENDIR)
189e2694 649
b9a9cde4 650CGEN_MAIN_SCM = $(srccgen)/cos.scm $(srccgen)/utils.scm \
6cd37f15
DE
651 $(srccgen)/attr.scm $(srccgen)/enum.scm $(srccgen)/types.scm \
652 $(srccgen)/utils-cgen.scm $(srccgen)/cpu.scm \
653 $(srccgen)/mode.scm $(srccgen)/mach.scm \
654 $(srccgen)/model.scm $(srccgen)/hardware.scm \
189e2694
DE
655 $(srccgen)/ifield.scm $(srccgen)/iformat.scm \
656 $(srccgen)/operand.scm $(srccgen)/insn.scm \
b9a9cde4 657 $(srccgen)/rtl.scm $(srccgen)/sim.scm
b61e2e14 658CGEN_ARCH_SCM = $(srccgen)/sim-arch.scm
6cd37f15
DE
659CGEN_CPU_SCM = $(srccgen)/sim-cpu.scm $(srccgen)/sim-model.scm
660CGEN_DECODE_SCM = $(srccgen)/sim-decode.scm
189e2694
DE
661
662# Various choices for which cpu specific files to generate.
663CGEN_CPU_EXTR = -E tmp-ext.c1
664CGEN_CPU_READ = -R tmp-read.c1
b9a9cde4 665CGEN_CPU_WRITE = -W tmp-write.c1
189e2694 666CGEN_CPU_SEM = -S tmp-sem.c1
b9a9cde4
AC
667CGEN_CPU_SEMSW = -X tmp-semsw.c1
668
669CGEN_FLAGS_TO_PASS = \
670 CGEN=$(CGEN) \
671 CGENFLAGS=$(CGENFLAGS)
189e2694
DE
672
673# We store the generated files in the source directory until we decide to
674# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
675
676cgen-arch: force
677 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
b9a9cde4 678 $(CGEN) $(CGENDIR) $(CGENFLAGS) \
189e2694
DE
679 $(arch) "$(FLAGS)" ignored ignored ignored ignored
680
681cgen-cpu: force
682 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
b9a9cde4 683 $(CGEN) $(CGENDIR) $(CGENFLAGS) \
189e2694
DE
684 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
685
686cgen-decode: force
687 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
b9a9cde4 688 $(CGEN) $(CGENDIR) $(CGENFLAGS) \
189e2694
DE
689 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" ignored
690
b9a9cde4
AC
691cgen-cpu-decode: force
692 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
693 $(CGEN) $(CGENDIR) $(CGENFLAGS) \
694 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
695
36de6f40
DE
696# end-sanitize-cygnus
697
f2de7dfd 698## End COMMON_POST_CONFIG_FRAG
This page took 0.114712 seconds and 4 git commands to generate.