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