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