* gas/mips/mips.exp: Distinguish chains with 32-bit addresses.
[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
63330b2e 63SHELL = @SHELL@
f2de7dfd 64
6808fd61 65INSTALL = @INSTALL@
f2de7dfd
AC
66INSTALL_PROGRAM = @INSTALL_PROGRAM@
67INSTALL_DATA = @INSTALL_DATA@
f2de7dfd
AC
68
69CC = @CC@
70CC_FOR_BUILD = @CC_FOR_BUILD@
71CFLAGS = @CFLAGS@
72SIM_BSWAP = @sim_bswap@
73SIM_CFLAGS = @sim_cflags@
74SIM_DEBUG = @sim_debug@
f2de7dfd 75SIM_TRACE = @sim_trace@
717dbb29 76SIM_PROFILE = @sim_profile@
a77aa7ec 77
92f91d1f
AC
78SIM_ASSERT = @sim_assert@
79SIM_ALIGNMENT = @sim_alignment@
7456a10d 80SIM_BITSIZE = @sim_bitsize@
4141b1c6 81SIM_DEFAULT_MODEL = @sim_default_model@
92f91d1f 82SIM_ENDIAN = @sim_endian@
22469a10 83SIM_ENVIRONMENT = @sim_environment@
92f91d1f
AC
84SIM_FLOAT = @sim_float@
85SIM_HARDWARE = @sim_hardware@
63330b2e 86SIM_HW_OBJS = @sim_hw_obj@
278bda40 87SIM_HW = @sim_hw@
92f91d1f
AC
88SIM_HOSTENDIAN = @sim_hostendian@
89SIM_INLINE = @sim_inline@
90SIM_PACKAGES = @sim_packages@
91SIM_REGPARM = @sim_regparm@
92SIM_RESERVED_BITS = @sim_reserved_bits@
4141b1c6 93SIM_SCACHE = @sim_scache@
92f91d1f
AC
94SIM_SMP = @sim_smp@
95SIM_STDCALL = @sim_stdcall@
96SIM_WARNINGS = @sim_warnings@
97SIM_XOR_ENDIAN = @sim_xor_endian@
98
f2de7dfd
AC
99HDEFINES = @HDEFINES@
100TDEFINES =
101
102AR = @AR@
103AR_FLAGS = rc
104RANLIB = @RANLIB@
105MAKEINFO = makeinfo
106
f7abc1ca
DE
107DEP = $(srcroot)/mkdep
108
f2de7dfd 109# Each simulator's Makefile.in defines one or more of these variables
0f2811d1
DE
110# to override our settings as necessary. There is no need to define these
111# in the simulator's Makefile.in if one is using the default value. In fact
112# it's preferable not to.
f2de7dfd
AC
113
114# List of object files, less common parts.
115SIM_OBJS =
6808fd61
ILT
116# List of extra dependencies.
117# Generally this consists of simulator specific files included by sim-main.h.
118SIM_EXTRA_DEPS =
f2de7dfd
AC
119# List of flags to always pass to $(CC).
120SIM_EXTRA_CFLAGS =
121# List of extra libraries to link with.
122SIM_EXTRA_LIBS =
123# List of extra program dependencies.
124SIM_EXTRA_LIBDEPS =
125# List of main object files for `run'.
126SIM_RUN_OBJS = run.o
127# Dependency of `all' to build any extra files.
128SIM_EXTRA_ALL =
129# Dependency of `install' to install any extra files.
130SIM_EXTRA_INSTALL =
131# Dependency of `clean' to clean any extra files.
132SIM_EXTRA_CLEAN =
133
e5ce1670
DE
134# Every time a new general purpose source file was added every target's
135# Makefile.in needed to be updated to include the file in SIM_OBJS.
136# This doesn't scale.
137# This variable specifies all the generic stuff common to the newer simulators.
138# Things like sim-reason.o can't go here as the cpu may provide its own
139# (though hopefully in time that won't be so). Things like sim-bits.o can go
140# here. Some files are used by all simulators (e.g. callback.o).
141# Those files are specified in LIB_OBJS below.
142
143SIM_NEW_COMMON_OBJS = \
144 sim-bits.o \
145 sim-break.o \
146 sim-config.o \
147 sim-core.o \
148 sim-endian.o \
149 sim-events.o \
150 sim-fpu.o \
151 sim-io.o \
0e701ac3 152 sim-info.o \
e5ce1670
DE
153 sim-load.o \
154 sim-memopt.o \
155 sim-module.o \
156 sim-options.o \
157 sim-profile.o \
1ebc7e0e 158 sim-signal.o \
e5ce1670
DE
159 sim-trace.o \
160 sim-utils.o \
63330b2e
SG
161 sim-watch.o \
162 \
163 $(SIM_HW_OBJS) \
63330b2e 164
e5ce1670 165
f2de7dfd
AC
166## End COMMON_PRE_CONFIG_FRAG
167
168## COMMON_POST_CONFIG_FRAG
169
63330b2e
SG
170CONFIG_CFLAGS = \
171 @DEFS@ \
92f91d1f
AC
172 $(SIM_CFLAGS) \
173 $(SIM_DEBUG) \
4141b1c6 174 $(SIM_DEFAULT_MODEL) \
92f91d1f
AC
175 $(SIM_TRACE) \
176 $(SIM_PROFILE) \
177 $(SIM_BSWAP) \
178 $(SIM_ASSERT) \
179 $(SIM_ALIGNMENT) \
7456a10d 180 $(SIM_BITSIZE) \
92f91d1f 181 $(SIM_ENDIAN) \
22469a10 182 $(SIM_ENVIRONMENT) \
92f91d1f
AC
183 $(SIM_FLOAT) \
184 $(SIM_HARDWARE) \
185 $(SIM_HOSTENDIAN) \
186 $(SIM_INLINE) \
187 $(SIM_PACKAGES) \
188 $(SIM_REGPARM) \
189 $(SIM_RESERVED_BITS) \
4141b1c6 190 $(SIM_SCACHE) \
92f91d1f
AC
191 $(SIM_SMP) \
192 $(SIM_STDCALL) \
193 $(SIM_WARNINGS) \
194 $(SIM_XOR_ENDIAN) \
63330b2e 195 $(SIM_HARDWARE) \
92f91d1f
AC
196 $(SIM_EXTRA_CFLAGS) \
197 $(HDEFINES) $(TDEFINES)
38377b3a 198CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
f2de7dfd 199 -I../../include -I$(srcroot)/include \
a77aa7ec 200 -I../../bfd -I$(srcroot)/bfd \
3618a6e9
MM
201 -I../../opcodes -I$(srcroot)/opcodes \
202 -I../../intl -I$(srcroot)/intl
f2de7dfd
AC
203ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
204BUILD_CFLAGS = -g -O $(CSEARCH)
205
f7abc1ca
DE
206COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
207
f2de7dfd
AC
208LIBIBERTY_LIB = ../../libiberty/libiberty.a
209BFD_LIB = ../../bfd/libbfd.a
210OPCODES_LIB = ../../opcodes/libopcodes.a
fc4198bb
TT
211INTLLIBS = @INTLLIBS@
212INTLDEPS = @INTLDEPS@
f2de7dfd 213CONFIG_LIBS = @LIBS@
fc4198bb 214LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
f2de7dfd 215 $(SIM_EXTRA_LIBDEPS)
fc4198bb 216EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) \
f2de7dfd
AC
217 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
218
f7abc1ca 219LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
f2de7dfd 220
3618a6e9
MM
221RUNTESTFLAGS =
222
22469a10 223all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit
f2de7dfd
AC
224
225libsim.a: $(LIB_OBJS)
226 rm -f libsim.a
fafce69a 227 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
f2de7dfd
AC
228 $(RANLIB) libsim.a
229
230run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
231 $(CC) $(ALL_CFLAGS) -o run \
232 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
233
38377b3a 234run.o: $(srccom)/run.c config.h tconfig.h \
22469a10 235 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h
38377b3a 236 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
f2de7dfd
AC
237
238# FIXME: Ideally, callback.o and friends live in a library outside of
239# both the gdb and simulator source trees (e.g. devo/remote. Not
240# devo/libremote because this directory would contain more than just
241# a library).
242
38377b3a 243callback.o: $(srccom)/callback.c config.h tconfig.h \
f2de7dfd 244 $(srcroot)/include/callback.h targ-vals.h
38377b3a 245 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
f2de7dfd 246
38377b3a 247syscall.o: $(srccom)/syscall.c config.h tconfig.h \
f7abc1ca 248 $(srcroot)/include/callback.h targ-vals.h
38377b3a 249 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
f7abc1ca 250
f2de7dfd
AC
251targ-map.o: targ-map.c targ-vals.h
252
38377b3a
DE
253gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
254 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
f2de7dfd 255
6cd37f15
DE
256targ-vals.h targ-map.c: stamp-tvals
257stamp-tvals: gentmap
258 rm -f tmp-tvals.h tmp-tmap.c
259 ./gentmap -h >tmp-tvals.h
63330b2e 260 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
6cd37f15 261 ./gentmap -c >tmp-tmap.c
63330b2e 262 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
6cd37f15 263 touch stamp-tvals
a35e91c3
AC
264
265#
266# Rules for building sim-* components. Triggered by listing the corresponding
267# .o file in the list of simulator targets.
268#
269
6808fd61
ILT
270sim_main_headers = \
271 sim-main.h \
278bda40 272 $(srccom)/sim-inline.h \
38377b3a
DE
273 $(srccom)/sim-config.h \
274 $(srccom)/sim-base.h \
275 $(srccom)/sim-basics.h \
aaa11abe 276 $(srccom)/sim-signal.h \
38377b3a
DE
277 $(srccom)/sim-memopt.h \
278 $(srccom)/sim-model.h \
279 $(srccom)/sim-module.h \
280 $(srccom)/sim-trace.h \
281 $(srccom)/sim-profile.h \
282 $(srccom)/sim-engine.h \
283 $(srccom)/sim-events.h \
284 $(srccom)/sim-watch.h \
285 $(srccom)/sim-assert.h \
f7abc1ca
DE
286 tconfig.h \
287 $(SIM_EXTRA_DEPS)
6808fd61 288
38377b3a
DE
289sim-assert_h = $(srccom)/sim-assert.h
290sim-endian_h = $(srccom)/sim-endian.h
291sim-n-endian_h = $(srccom)/sim-n-endian.h
292sim-bits_h = $(srccom)/sim-bits.h
293sim-config_h = $(srccom)/sim-config.h
294sim-n-bits_h = $(srccom)/sim-n-bits.h
295sim-core_h = $(srccom)/sim-core.h
296sim-n-core_h = $(srccom)/sim-n-core.h
297sim-engine_h = $(srccom)/sim-engine.h
298sim-events_h = $(srccom)/sim-events.h
299sim-fpu_h = $(srccom)/sim-fpu.h
300sim-io_h = $(srccom)/sim-io.h
301sim-options_h = $(srccom)/sim-options.h
302sim-break_h = $(srccom)/sim-break.h
1ebc7e0e 303sim-signal_h = $(srccom)/sim-signal.h
a35e91c3 304
278bda40 305# start-sanitize-am30
63330b2e
SG
306hw-base_h = $(srccom)/hw-base.h
307hw-device_h = $(srccom)/hw-device.h
308hw-handles_h = #$(srccom)/hw-handles.h
309hw-instances_h = #$(srccom)/hw-instances.h
310hw-ports_h = $(srccom)/hw-ports.h
311hw-properties_h = $(srccom)/hw-properties.h
312hw-tree_h = $(srccom)/hw-tree.h
313
314hw_base_headers = \
315 $(hw-base_h) \
316 $(hw-device_h) \
317 $(hw-instances_h) \
318 $(hw-handles_h) \
319 $(hw-ports_h) \
320 $(hw-properties_h) \
278bda40 321# end-sanitize-am30
63330b2e 322
6808fd61 323# FIXME: If this complicated way of building .o files from ../common is
c967f187 324# necessary, the reason should be documented here.
6808fd61
ILT
325
326BUILT_SRC_FROM_COMMON= \
5dcf955d 327 sim-inline.c
6808fd61 328
38377b3a 329sim-abort.o: $(srccom)/sim-abort.c \
f7abc1ca 330 $(SIM_EXTRA_DEPS)
38377b3a 331 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
f03b093c 332
38377b3a 333sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
f7abc1ca 334 $(SIM_EXTRA_DEPS)
38377b3a 335 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
a35e91c3 336
38377b3a 337sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
189e2694 338 $(SIM_EXTRA_DEPS)
38377b3a 339 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
a35e91c3 340
189e2694
DE
341sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
342 $(sim-core_h) $(sim-n-core_h) \
f7abc1ca 343 $(SIM_EXTRA_DEPS)
38377b3a 344 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
a35e91c3 345
38377b3a 346sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h) \
f7abc1ca 347 $(SIM_EXTRA_DEPS)
38377b3a 348 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
a35e91c3 349
38377b3a
DE
350sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
351 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
f03b093c 352
38377b3a 353sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
f7abc1ca 354 $(SIM_EXTRA_DEPS)
38377b3a 355 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
a35e91c3 356
38377b3a 357sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
f7abc1ca 358 $(SIM_EXTRA_DEPS)
38377b3a 359 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
fafce69a 360
38377b3a 361sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) \
22469a10 362 $(srcroot)/include/remote-sim.h \
f7abc1ca 363 $(SIM_EXTRA_DEPS)
38377b3a 364 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
3971886a 365
22469a10
DE
366sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) \
367 $(srcroot)/include/remote-sim.h \
f7abc1ca 368 $(SIM_EXTRA_DEPS)
38377b3a 369 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
92f91d1f 370
278bda40
AC
371#start-sanitize-am30
372sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers) $(SIM_EXTRA_DEPS)
373 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
374
375#end-sanitize-am30
0e701ac3
AC
376sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) \
377 $(srcroot)/include/remote-sim.h \
378 $(SIM_EXTRA_DEPS)
379 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
380
38377b3a 381sim-inline.c: $(srccom)/sim-inline.c
a35e91c3 382 rm -f $@ tmp-$@
38377b3a
DE
383 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
384 cat $(srccom)/$@ >> tmp-$@
63330b2e 385 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
a35e91c3 386
22469a10
DE
387sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) \
388 $(srcroot)/include/remote-sim.h
38377b3a 389 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
a35e91c3 390
38377b3a 391sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
f7abc1ca 392 $(sim-io_h)
38377b3a 393 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
a34abff8 394
38377b3a 395sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
f7abc1ca 396 $(sim-io_h)
38377b3a 397 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
717dbb29 398
38377b3a 399sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
f7abc1ca 400 $(sim-options_h) $(sim-io_h)
38377b3a 401 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
0f2811d1 402
22469a10
DE
403sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) \
404 $(srcroot)/include/remote-sim.h
38377b3a 405 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
f03b093c 406
22469a10
DE
407sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) \
408 $(srcroot)/include/remote-sim.h
38377b3a 409 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
f03b093c 410
38377b3a
DE
411sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
412 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
f03b093c 413
1ebc7e0e
DE
414sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
415 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
416
38377b3a
DE
417sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
418 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
f03b093c 419
38377b3a 420sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
f7abc1ca 421 $(sim-options_h) $(sim-io_h)
38377b3a 422 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
e9b2f579 423
38377b3a 424sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
f7abc1ca 425 $(sim-options_h) $(sim-io_h)
38377b3a 426 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
717dbb29 427
38377b3a 428sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
f7abc1ca 429 $(sim-io_h)
38377b3a 430 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
c967f187 431
38377b3a
DE
432sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
433 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
a35e91c3 434
38377b3a
DE
435sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
436 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
fafce69a 437
38377b3a
DE
438sim-load.o: $(srccom)/sim-load.c $(srcroot)/include/callback.h
439 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
0f2811d1 440
38377b3a 441sim-break.o: $(srccom)/sim-break.c $(sim_main_headers) \
f7abc1ca 442 $(sim_break_h)
38377b3a 443 $(CC) -c $(srccom)/sim-break.c $(ALL_CFLAGS)
b9d580a4 444
63330b2e 445
278bda40
AC
446# start-sanitize-am30
447# FIXME This is one very simple-minded way of generating the file hw-config.h
448hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
449 rm -f tmp-hw.h
450 echo "/* generated by Makefile */" > tmp-hw.h
451 for hw in $(SIM_HW) ; do \
452 echo "extern const struct hw_device_descriptor dv_$${hw}_descriptor[];" ; \
453 done >> tmp-hw.h
454 echo "const struct hw_device_descriptor *hw_descriptors[] = {" >> tmp-hw.h
455 for hw in $(SIM_HW) ; do \
456 echo " dv_$${hw}_descriptor," ; \
457 done >> tmp-hw.h
458 echo " NULL," >> tmp-hw.h
459 echo "};" >> tmp-hw.h
460 mv tmp-hw.h hw-config.h
461
63330b2e 462hw-base.o: $(srccom)/hw-base.c $(sim_main_headers) \
278bda40 463 $(hw_base_headers) hw-config.h
63330b2e
SG
464 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
465
466hw-device.o: $(srccom)/hw-device.c $(sim_main_headers) \
467 $(hw-device_h)
468 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
469
470hw-instances.o: $(srccom)/hw-instances.c $(sim_main_headers) \
471 $(hw_base_headers)
472 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
473
474hw-handles.o: $(srccom)/hw-handles.c $(sim_main_headers) \
475 $(hw_base_headers)
476 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
477
478hw-ports.o: $(srccom)/hw-ports.c $(sim_main_headers) \
479 $(hw-ports_h)
480 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
481
482hw-properties.o: $(srccom)/hw-properties.c $(sim_main_headers) \
483 $(hw-properties_h)
484 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
485
486hw-tree.o: $(srccom)/hw-tree.c $(sim_main_headers) \
487 $(hw-tree_h) $(hw_base_headers)
488 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
489
490
491dv-core.o: $(srccom)/dv-core.c $(sim_main_headers) \
492 $(sim-main_h) $(hw_base_headers)
493 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
494
495dv-glue.o: $(srccom)/dv-glue.c $(sim_main_headers) \
496 $(sim-main_h) $(hw_base_headers)
497 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
498
499dv-pal.o: $(srccom)/dv-pal.c $(sim_main_headers) \
500 $(sim-main_h) $(hw_base_headers)
501 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
502
278bda40 503#end-sanitize-am30
63330b2e 504
38377b3a 505nrun.o: $(srccom)/nrun.c config.h tconfig.h \
22469a10
DE
506 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h \
507 $(sim_main_headers)
38377b3a 508 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
a35e91c3 509
84c6d152
DE
510# Devices.
511
512dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
513 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
514
c967f187
DE
515# CGEN support.
516
38377b3a 517cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers) \
4a44afd5 518 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h
38377b3a 519 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
88d5f8e8 520
4a44afd5 521cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
38377b3a 522 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
c967f187 523
38377b3a
DE
524cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers) \
525 $(srccom)/cgen-trace.h
526 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
c967f187 527
38377b3a
DE
528cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
529 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h
530 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
c967f187
DE
531
532# Support targets.
533
f2de7dfd
AC
534install: install-common $(SIM_EXTRA_INSTALL)
535
6808fd61
ILT
536install-common: installdirs
537 n=`echo run | sed '$(program_transform_name)'`; \
538 $(INSTALL_PROGRAM) run $(bindir)/$$n
539
540installdirs:
541 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
f2de7dfd
AC
542
543check:
3618a6e9 544 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
f2de7dfd
AC
545
546info:
547clean-info:
548install-info:
549
550.NOEXPORT:
551MAKEOVERRIDES=
552
553tags etags: TAGS
554
84c6d152
DE
555# Macros like EXTERN_SIM_CORE confuse tags.
556# And the sim-n-foo.h files create functions that can't be found either.
f2de7dfd 557TAGS: force
84c6d152
DE
558 cd $(srcdir) && \
559 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
560 *.[ch] ../common/*.[ch]
f2de7dfd 561
717dbb29 562clean: $(SIM_EXTRA_CLEAN)
f2de7dfd
AC
563 rm -f *.[oa] *~ core
564 rm -f run libsim.a
6cd37f15 565 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
f7abc1ca 566 if [ ! -f Make-common.in ] ; then \
5dcf955d
DE
567 rm -f $(BUILT_SRC_FROM_COMMON) ; \
568 fi
f2de7dfd 569
717dbb29 570distclean mostlyclean maintainer-clean realclean: clean
f2de7dfd 571 rm -f TAGS
88d5f8e8 572 rm -f Makefile config.cache config.log config.status .gdbinit
f2de7dfd 573 rm -f tconfig.h config.h stamp-h
0f399b0c 574 rm -f targ-vals.def
f2de7dfd
AC
575
576.c.o:
577 $(CC) -c $(ALL_CFLAGS) $<
578
579# Dummy target to force execution of dependent targets.
580force:
581
38377b3a 582Makefile: Makefile.in $(srccom)/Make-common.in config.status
f2de7dfd
AC
583 CONFIG_HEADERS= $(SHELL) ./config.status
584
585config.status: configure
586 $(SHELL) ./config.status --recheck
587
588config.h: stamp-h ; @true
589stamp-h: config.in config.status
590 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
591
38377b3a 592.gdbinit: # config.status $(srccom)/gdbinit.in
88d5f8e8
DE
593 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
594
36de6f40
DE
595# start-sanitize-cygnus
596
189e2694
DE
597# CGEN support
598
599SCHEME = @SCHEME@
189e2694
DE
600SCHEMEFLAGS = -s
601srccgen = $(srcroot)/cgen
602
603CGEN_VERBOSE = -v
6cd37f15
DE
604CGEN_MAIN_SCM = $(srccgen)/object.scm $(srccgen)/utils.scm \
605 $(srccgen)/attr.scm $(srccgen)/enum.scm $(srccgen)/types.scm \
606 $(srccgen)/utils-cgen.scm $(srccgen)/cpu.scm \
607 $(srccgen)/mode.scm $(srccgen)/mach.scm \
608 $(srccgen)/model.scm $(srccgen)/hardware.scm \
189e2694
DE
609 $(srccgen)/ifield.scm $(srccgen)/iformat.scm \
610 $(srccgen)/operand.scm $(srccgen)/insn.scm \
6cd37f15
DE
611 $(srccgen)/cdl-c.scm $(srccgen)/sim.scm
612CGEN_CPU_SCM = $(srccgen)/sim-cpu.scm $(srccgen)/sim-model.scm
613CGEN_DECODE_SCM = $(srccgen)/sim-decode.scm
189e2694
DE
614
615# Various choices for which cpu specific files to generate.
616CGEN_CPU_EXTR = -E tmp-ext.c1
617CGEN_CPU_READ = -R tmp-read.c1
618CGEN_CPU_SEM = -S tmp-sem.c1
619CGEN_CPU_SEMSW = -W tmp-semsw.c1
620
621# We store the generated files in the source directory until we decide to
622# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
623
624cgen-arch: force
625 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
626 $(SCHEME) $(SCHEMEFLAGS) \
627 $(srccgen) $(CGEN_VERBOSE) \
628 $(arch) "$(FLAGS)" ignored ignored ignored ignored
629
630cgen-cpu: force
631 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
632 $(SCHEME) $(SCHEMEFLAGS) \
633 $(srccgen) $(CGEN_VERBOSE) \
634 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
635
636cgen-decode: force
637 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
638 $(SCHEME) $(SCHEMEFLAGS) \
639 $(srccgen) $(CGEN_VERBOSE) \
640 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" ignored
641
36de6f40
DE
642# end-sanitize-cygnus
643
f2de7dfd 644## End COMMON_POST_CONFIG_FRAG
This page took 0.094862 seconds and 4 git commands to generate.