daily update
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
c906108c 1# Makefile fragment for common parts of all simulators.
e4d013fc 2# Copyright 1997, 1998, 1999, 2000, 2001, 2004, 2005, 2007, 2008, 2009
ef5a45ed 3# Free Software Foundation, Inc.
c906108c
SS
4# Contributed by Cygnus Support.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
4744ac1b 8# the Free Software Foundation; either version 3 of the License, or
c906108c 9# (at your option) any later version.
4744ac1b 10#
c906108c
SS
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
4744ac1b 15#
c906108c 16# You should have received a copy of the GNU General Public License
4744ac1b 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
18
19# This Makefile fragment consists of two separate parts.
20# They are merged into the final Makefile at points denoted by
21# "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
22#
23# The target Makefile should look like:
24#
25#># Copyright blah blah
26#>
27#>## COMMON_PRE_CONFIG_FRAG
28#>
29#># Any overrides necessary for the SIM_FOO config vars.
30#>SIM_FOO = ...
31#>
32#>## COMMON_POST_CONFIG_FRAG
33#>
34#># Rules to build target specific .o's.
35
36## COMMON_PRE_CONFIG_FRAG
37
38VPATH = @srcdir@
39srcdir = @srcdir@
40srccom = $(srcdir)/../common
41srcroot = $(srcdir)/../..
42
43prefix = @prefix@
44exec_prefix = @exec_prefix@
45
46host_alias = @host_alias@
47target_alias = @target_alias@
48program_transform_name = @program_transform_name@
49bindir = @bindir@
50
51libdir = @libdir@
52tooldir = $(libdir)/$(target_alias)
53
54datadir = @datadir@
55mandir = @mandir@
56man1dir = $(mandir)/man1
57infodir = @infodir@
58includedir = @includedir@
59
60# This can be referenced by the gettext configuration code.
61top_builddir = ..
62
63EXEEXT = @EXEEXT@
64SHELL = @SHELL@
65
66INSTALL = @INSTALL@
67INSTALL_PROGRAM = @INSTALL_PROGRAM@
68INSTALL_DATA = @INSTALL_DATA@
69
70CC = @CC@
71CC_FOR_BUILD = @CC_FOR_BUILD@
72CFLAGS = @CFLAGS@
73SIM_BSWAP = @sim_bswap@
74SIM_CFLAGS = @sim_cflags@
75SIM_DEBUG = @sim_debug@
76SIM_TRACE = @sim_trace@
77SIM_PROFILE = @sim_profile@
78
79SIM_ASSERT = @sim_assert@
80SIM_ALIGNMENT = @sim_alignment@
81SIM_BITSIZE = @sim_bitsize@
82SIM_DEFAULT_MODEL = @sim_default_model@
83SIM_ENDIAN = @sim_endian@
84SIM_ENVIRONMENT = @sim_environment@
85SIM_FLOAT = @sim_float@
86SIM_HW_CFLAGS = @sim_hw_cflags@
87SIM_HW_OBJS = @sim_hw_objs@
88SIM_HW = @sim_hw@
89SIM_HOSTENDIAN = @sim_hostendian@
90SIM_INLINE = @sim_inline@
91SIM_PACKAGES = @sim_packages@
92SIM_REGPARM = @sim_regparm@
93SIM_RESERVED_BITS = @sim_reserved_bits@
94SIM_SCACHE = @sim_scache@
95SIM_SMP = @sim_smp@
96SIM_STDCALL = @sim_stdcall@
c906108c 97SIM_XOR_ENDIAN = @sim_xor_endian@
d4f3574e
SS
98WARN_CFLAGS = @WARN_CFLAGS@
99WERROR_CFLAGS = @WERROR_CFLAGS@
100SIM_WARN_CFLAGS = $(WARN_CFLAGS)
101SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c
SS
102
103HDEFINES = @HDEFINES@
104TDEFINES =
105
106AR = @AR@
107AR_FLAGS = rc
108RANLIB = @RANLIB@
109MAKEINFO = makeinfo
110
111DEP = $(srcroot)/mkdep
112
113# Each simulator's Makefile.in defines one or more of these variables
114# to override our settings as necessary. There is no need to define these
115# in the simulator's Makefile.in if one is using the default value. In fact
116# it's preferable not to.
117
118# List of object files, less common parts.
119SIM_OBJS =
120# List of extra dependencies.
121# Generally this consists of simulator specific files included by sim-main.h.
122SIM_EXTRA_DEPS =
123# List of flags to always pass to $(CC).
124SIM_EXTRA_CFLAGS =
125# List of extra libraries to link with.
126SIM_EXTRA_LIBS =
127# List of extra program dependencies.
128SIM_EXTRA_LIBDEPS =
129# List of main object files for `run'.
130SIM_RUN_OBJS = run.o
131# Dependency of `all' to build any extra files.
132SIM_EXTRA_ALL =
133# Dependency of `install' to install any extra files.
134SIM_EXTRA_INSTALL =
135# Dependency of `clean' to clean any extra files.
136SIM_EXTRA_CLEAN =
d690312f
CD
137# Likewise `distclean'
138SIM_EXTRA_DISTCLEAN =
c906108c
SS
139
140# Every time a new general purpose source file was added every target's
141# Makefile.in needed to be updated to include the file in SIM_OBJS.
142# This doesn't scale.
143# This variable specifies all the generic stuff common to the newer simulators.
144# Things like sim-reason.o can't go here as the cpu may provide its own
145# (though hopefully in time that won't be so). Things like sim-bits.o can go
146# here. Some files are used by all simulators (e.g. callback.o).
147# Those files are specified in LIB_OBJS below.
148
149SIM_COMMON_HW_OBJS = \
150 hw-alloc.o \
151 hw-base.o \
152 hw-device.o \
153 hw-events.o \
154 hw-handles.o \
155 hw-instances.o \
156 hw-ports.o \
157 hw-properties.o \
158 hw-tree.o \
159 sim-hw.o \
160
161SIM_NEW_COMMON_OBJS = \
162 sim-arange.o \
163 sim-bits.o \
c906108c
SS
164 sim-config.o \
165 sim-core.o \
166 sim-endian.o \
167 sim-events.o \
168 sim-fpu.o \
169 sim-io.o \
170 sim-info.o \
171 sim-load.o \
172 sim-memopt.o \
173 sim-module.o \
174 sim-options.o \
175 sim-profile.o \
176 sim-signal.o \
177 sim-trace.o \
178 sim-utils.o \
179 sim-watch.o \
180 \
181 $(SIM_HW_OBJS) \
182
183# Add this to SIM_EXTRA_DEPS.
184CGEN_INCLUDE_DEPS = \
185 $(srccom)/cgen-cpu.h \
186 $(srccom)/cgen-defs.h \
187 $(srccom)/cgen-engine.h \
188 $(srccom)/cgen-scache.h \
189 $(srccom)/cgen-sim.h \
190 $(srccom)/cgen-trace.h \
191 $(srccom)/cgen-types.h \
192 $(srcdir)/../../include/opcode/cgen.h
193
194## End COMMON_PRE_CONFIG_FRAG
195
196## COMMON_POST_CONFIG_FRAG
197
198CONFIG_CFLAGS = \
199 @DEFS@ \
200 $(SIM_CFLAGS) \
201 $(SIM_DEBUG) \
202 $(SIM_DEFAULT_MODEL) \
203 $(SIM_TRACE) \
204 $(SIM_PROFILE) \
205 $(SIM_BSWAP) \
206 $(SIM_ASSERT) \
207 $(SIM_ALIGNMENT) \
208 $(SIM_BITSIZE) \
209 $(SIM_ENDIAN) \
210 $(SIM_ENVIRONMENT) \
211 $(SIM_FLOAT) \
212 $(SIM_HW_CFLAGS) \
213 $(SIM_HOSTENDIAN) \
214 $(SIM_INLINE) \
215 $(SIM_PACKAGES) \
216 $(SIM_REGPARM) \
217 $(SIM_RESERVED_BITS) \
218 $(SIM_SCACHE) \
219 $(SIM_SMP) \
220 $(SIM_STDCALL) \
d4f3574e
SS
221 $(SIM_WARN_CFLAGS) \
222 $(SIM_WERROR_CFLAGS) \
c906108c
SS
223 $(SIM_XOR_ENDIAN) \
224 $(SIM_HARDWARE) \
225 $(SIM_EXTRA_CFLAGS) \
226 $(HDEFINES) $(TDEFINES)
227CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
228 -I../../include -I$(srcroot)/include \
229 -I../../bfd -I$(srcroot)/bfd \
230 -I../../opcodes -I$(srcroot)/opcodes \
20e95c23 231 @INCINTL@
c906108c
SS
232ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
233BUILD_CFLAGS = -g -O $(CSEARCH)
234
235COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
236
237LIBIBERTY_LIB = ../../libiberty/libiberty.a
238BFD_LIB = ../../bfd/libbfd.a
239OPCODES_LIB = ../../opcodes/libopcodes.a
20e95c23
DJ
240LIBINTL = @LIBINTL@
241LIBINTL_DEP = @LIBINTL_DEP@
c906108c 242CONFIG_LIBS = @LIBS@
20e95c23 243LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
c906108c 244 $(SIM_EXTRA_LIBDEPS)
20e95c23 245EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
c906108c
SS
246 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
247
6efef468 248LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
c906108c
SS
249
250RUNTESTFLAGS =
251
3c25f8c7
AC
252callback_h = $(srcroot)/include/gdb/callback.h
253remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
254
4ec242d7 255all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
c906108c
SS
256
257libsim.a: $(LIB_OBJS)
258 rm -f libsim.a
259 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
260 $(RANLIB) libsim.a
261
4ec242d7 262run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
be091327 263 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
c906108c
SS
264 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
265
3c25f8c7 266run.o: $(srccom)/run.c config.h tconfig.h $(remote_sim_h) $(callback_h)
c906108c
SS
267 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
268
269# FIXME: Ideally, callback.o and friends live in a library outside of
270# both the gdb and simulator source trees (e.g. devo/remote. Not
271# devo/libremote because this directory would contain more than just
272# a library).
273
3c25f8c7 274callback.o: $(srccom)/callback.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
275 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
276
3c25f8c7 277syscall.o: $(srccom)/syscall.c config.h tconfig.h $(callback_h) targ-vals.h
c906108c
SS
278 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
279
280targ-map.o: targ-map.c targ-vals.h
281
282gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
283 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
284
285targ-vals.h targ-map.c: stamp-tvals
286stamp-tvals: gentmap
287 rm -f tmp-tvals.h tmp-tmap.c
288 ./gentmap -h >tmp-tvals.h
289 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
290 ./gentmap -c >tmp-tmap.c
291 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
292 touch stamp-tvals
293
6efef468
JM
294version.c: Makefile ../../gdb/version.in
295 rm -f version.c-tmp version.c
296 echo '#include "version.h"' >> version.c-tmp
297 echo 'const char version[] = "'"`sed q ${srcdir}/../../gdb/version.in`"'";' >> version.c-tmp
298 mv version.c-tmp version.c
299version.o: version.c $(version_h)
300
301
c906108c
SS
302#
303# Rules for building sim-* components. Triggered by listing the corresponding
304# .o file in the list of simulator targets.
305#
306
307sim_main_headers = \
308 sim-main.h \
08cd3760
RE
309 $(sim-assert_h) \
310 $(sim-base_h) \
311 $(sim-cpu_h) \
312 $(sim-engine_h) \
313 $(sim-events_h) \
314 $(sim-memopt_h) \
315 $(sim-model_h) \
316 $(sim-module_h) \
317 $(sim-profile_h) \
318 $(sim-trace_h) \
319 $(sim-watch_h) \
320 $(sim-basics_h) \
c906108c
SS
321 $(SIM_EXTRA_DEPS)
322
323# Exported version of sim_main_headers.
324SIM_MAIN_DEPS = \
325 $(sim_main_headers)
326
08cd3760
RE
327sim-alu_h = $(srccom)/sim-alu.h
328sim-arange_h = $(srccom)/sim-arange.h \
329 $(srccom)/sim-arange.c
c906108c 330sim-assert_h = $(srccom)/sim-assert.h
08cd3760
RE
331sim-base_h = $(srccom)/sim-base.h \
332 $(sim-module_h) \
333 $(sim-trace_h) \
334 $(sim-core_h) \
335 $(sim-events_h) \
336 $(sim-profile_h) \
337 $(sim-model_h) \
338 $(sim-io_h) \
339 $(sim-engine_h) \
340 $(sim-watch_h) \
341 $(sim-memopt_h) \
342 $(sim-cpu_h)
343sim-basics_h = $(srccom)/sim-basics.h \
c87368ac
RE
344 ../common/cconfig.h \
345 tconfig.h \
08cd3760 346 $(sim-config_h) \
70ae6611 347 $(callback_h) \
08cd3760
RE
348 $(sim-inline_h) \
349 $(sim-types_h) \
350 $(sim-bits_h) \
351 $(sim-endian_h) \
352 $(sim-signal_h) \
353 $(sim-arange_h) \
354 $(sim-utils_h)
355sim-bits_h = $(srccom)/sim-bits.h \
356 $(srccom)/sim-bits.c
c906108c 357sim-config_h = $(srccom)/sim-config.h
c906108c 358sim-core_h = $(srccom)/sim-core.h
08cd3760
RE
359sim-cpu_h = $(srccom)/sim-cpu.h
360sim-endian_h = $(srccom)/sim-endian.h \
361 $(srccom)/sim-endian.c
c906108c
SS
362sim-engine_h = $(srccom)/sim-engine.h
363sim-events_h = $(srccom)/sim-events.h
364sim-fpu_h = $(srccom)/sim-fpu.h
08cd3760
RE
365sim-hw_h = $(srccom)/sim-hw.h
366sim-inline_h = $(srccom)/sim-inline.h
c906108c 367sim-io_h = $(srccom)/sim-io.h
08cd3760
RE
368sim-memopt_h = $(srccom)/sim-memopt.h
369sim-model_h = $(srccom)/sim-model.h
370sim-module_h = $(srccom)/sim-module.h
371sim-n-bits_h = $(srccom)/sim-n-bits.h
372sim-n-core_h = $(srccom)/sim-n-core.h
373sim-n-endian_h = $(srccom)/sim-n-endian.h
c906108c 374sim-options_h = $(srccom)/sim-options.h
08cd3760 375sim-profile_h = $(srccom)/sim-profile.h
c906108c 376sim-signal_h = $(srccom)/sim-signal.h
08cd3760
RE
377sim-trace_h = $(srccom)/sim-trace.h
378sim-types_h = $(srccom)/sim-types.h
379sim-utils_h = $(srccom)/sim-utils.h
380sim-watch_h = $(srccom)/sim-watch.h
c906108c
SS
381
382hw-alloc_h = $(srccom)/hw-alloc.h
383hw-base_h = $(srccom)/hw-base.h
384hw-device_h = $(srccom)/hw-device.h
385hw-events_h = $(srccom)/hw-events.h
386hw-handles_h = $(srccom)/hw-handles.h
387hw-instances_h = $(srccom)/hw-instances.h
388hw-ports_h = $(srccom)/hw-ports.h
389hw-properties_h = $(srccom)/hw-properties.h
390hw-tree_h = $(srccom)/hw-tree.h
391
392hw_main_headers = \
393 $(srccom)/hw-main.h \
394 $(hw-alloc_h) \
395 $(hw-base_h) \
396 $(hw-device_h) \
397 $(hw-events_h) \
398 $(hw-instances_h) \
399 $(hw-handles_h) \
400 $(hw-ports_h) \
401 $(hw-properties_h) \
402
403# FIXME: If this complicated way of building .o files from ../common is
404# necessary, the reason should be documented here.
405
406BUILT_SRC_FROM_COMMON= \
407 sim-inline.c
408
409sim-abort.o: $(srccom)/sim-abort.c \
410 $(SIM_EXTRA_DEPS)
411 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
412
413sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
414 $(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
415
416sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
417 $(SIM_EXTRA_DEPS)
418 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
419
80d35d90 420sim-config.o: $(srccom)/sim-config.c $(sim-config_h) sim-main.h \
c906108c
SS
421 $(SIM_EXTRA_DEPS)
422 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
423
424sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
425 $(sim-core_h) $(sim-n-core_h)
426 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
427
428sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
429 $(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
430
431sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
432 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
433
434sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
435 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
436
80d35d90 437sim-events.o: $(srccom)/sim-events.c $(sim-events_h) sim-main.h \
c906108c
SS
438 $(SIM_EXTRA_DEPS)
439 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
440
441sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
442 $(SIM_EXTRA_DEPS)
443 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
444
3c25f8c7 445sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
446 $(SIM_EXTRA_DEPS)
447 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
448
3c25f8c7 449sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
c906108c
SS
450 $(SIM_EXTRA_DEPS)
451 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
452
453sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
454 $(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
455
3c25f8c7 456sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
c906108c
SS
457 $(SIM_EXTRA_DEPS)
458 $(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
459
460sim-inline.c: $(srccom)/sim-inline.c
461 rm -f $@ tmp-$@
462 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
463 cat $(srccom)/$@ >> tmp-$@
464 $(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
465
3c25f8c7
AC
466sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
467 targ-vals.h
c906108c
SS
468 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
469
470sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
471 $(sim-io_h)
472 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
473
474sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
475 $(sim-io_h)
476 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
477
478sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
479 $(sim-options_h) $(sim-io_h)
480 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
481
3c25f8c7 482sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
483 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
484
3c25f8c7 485sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
486 $(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
487
3c25f8c7 488sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
c906108c
SS
489 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
490
491sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
492 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
493
494sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
495 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
496
497sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
498 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
499
500sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
501 $(sim-options_h) $(sim-io_h)
502 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
503
504sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
505 $(sim-options_h) $(sim-io_h)
506 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
507
508sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
509 $(sim-io_h)
510 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
511
512sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
513 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
514
515sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
516 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
517
c87368ac 518sim-load.o: $(srccom)/sim-load.c $(callback_h) $(sim-basics_h) $(remote_sim_h)
c906108c
SS
519 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
520
c906108c
SS
521
522# FIXME This is one very simple-minded way of generating the file hw-config.h
523hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
524 rm -f tmp-hw.h
525 echo "/* generated by Makefile */" > tmp-hw.h
526 for hw in $(SIM_HW) ; do \
527 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
528 done >> tmp-hw.h
529 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
530 for hw in $(SIM_HW) ; do \
531 echo " dv_$${hw}_descriptor," ; \
532 done >> tmp-hw.h
533 echo " NULL," >> tmp-hw.h
534 echo "};" >> tmp-hw.h
535 mv tmp-hw.h hw-config.h
536
537hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
538 $(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
539
540hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
541 $(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
542
543hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
544 $(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
545
546hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
547 $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
548
549test-hw-events: $(srccom)/hw-events.c libsim.a
550 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
551 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
552
553hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
554 $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
555
556hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
557 $(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
558
559hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
560 $(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
561
562hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
563 $(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
564
565hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
566 $(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
567
568# Devices.
569
570dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
571 $(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
572
573dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
574 $(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
575
576dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
577 $(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
578
579dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
580 $(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
581
582
3c25f8c7 583nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
c906108c
SS
584 $(sim_main_headers)
585 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
586
587# CGEN support.
588
589# For use in Makefile.in for cpu-specific files.
590CGEN_MAIN_CPU_DEPS = \
591 $(SIM_MAIN_DEPS) \
592 $(CGEN_INCLUDE_DEPS) \
593 $(srccom)/cgen-ops.h \
43ff13b4 594 $(srccom)/cgen-mem.h \
d4f3574e 595 $(srccom)/cgen-par.h \
43ff13b4 596 $(srccom)/cgen-fpu.h
c906108c
SS
597
598cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
599 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
600
601cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
602 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
603
604cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
605 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
606
43ff13b4
JM
607cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
608 $(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
609
610cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
611 $(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
612
c906108c
SS
613cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
614 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
615 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
616
d4f3574e
SS
617cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
618 $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
619 $(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
620
c906108c
SS
621# Support targets.
622
623install: install-common $(SIM_EXTRA_INSTALL)
624
625install-common: installdirs
626 n=`echo run | sed '$(program_transform_name)'`; \
149cfe5b 627 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
c906108c 628 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
149cfe5b
DJ
629 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
630 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
c906108c
SS
631
632installdirs:
149cfe5b
DJ
633 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
634 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
c906108c
SS
635
636check:
637 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
638
639info:
640clean-info:
641install-info:
642
643.NOEXPORT:
644MAKEOVERRIDES=
645
646tags etags: TAGS
647
648# Macros like EXTERN_SIM_CORE confuse tags.
649# And the sim-n-foo.h files create functions that can't be found either.
650TAGS: force
651 cd $(srcdir) && \
652 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
653 *.[ch] ../common/*.[ch]
654
655clean: $(SIM_EXTRA_CLEAN)
656 rm -f *.[oa] *~ core
4ec242d7 657 rm -f run$(EXEEXT) libsim.a
c906108c
SS
658 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
659 if [ ! -f Make-common.in ] ; then \
660 rm -f $(BUILT_SRC_FROM_COMMON) ; \
661 fi
662 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
663
d690312f 664distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
c906108c
SS
665 rm -f TAGS
666 rm -f Makefile config.cache config.log config.status .gdbinit
667 rm -f tconfig.h config.h stamp-h
668 rm -f targ-vals.def
669
670.c.o:
671 $(CC) -c $(ALL_CFLAGS) $<
672
673# Dummy target to force execution of dependent targets.
674force:
675
676Makefile: Makefile.in $(srccom)/Make-common.in config.status
677 CONFIG_HEADERS= $(SHELL) ./config.status
678
679config.status: configure
680 $(SHELL) ./config.status --recheck
681
682config.h: stamp-h ; @true
683stamp-h: config.in config.status
684 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
685
686.gdbinit: # config.status $(srccom)/gdbinit.in
687 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
688
689
604259a0
FCE
690# CGEN support
691
692CGENDIR = @cgendir@
9ab46d53 693CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
604259a0 694CGENFLAGS = -v
e3e473da 695CGEN_CPU_DIR = $(CGENDIR)/cpu
604259a0 696
7ede505a 697CGEN_READ_SCM = $(CGENDIR)/sim.scm
e3e473da
BE
698CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
699CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
700CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
701CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
604259a0
FCE
702
703# Various choices for which cpu specific files to generate.
2c2a86d7
DE
704# These are passed to cgen.sh in the "extrafiles" argument.
705CGEN_CPU_EXTR = /extr/
706CGEN_CPU_READ = /read/
707CGEN_CPU_WRITE = /write/
708CGEN_CPU_SEM = /sem/
709CGEN_CPU_SEMSW = /semsw/
604259a0
FCE
710
711CGEN_FLAGS_TO_PASS = \
9ab46d53 712 CGEN='$(CGEN)' \
604259a0
FCE
713 CGENFLAGS="$(CGENFLAGS)"
714
715# We store the generated files in the source directory until we decide to
716# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
717
718cgen-arch: force
719 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
720 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
721 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
722 $(archfile) ignored
3c25f8c7 723
604259a0
FCE
724cgen-cpu: force
725 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
726 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
727 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
728 $(archfile) "$(EXTRAFILES)"
604259a0 729
c79688eb
BE
730cgen-defs: force
731 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
732 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
733 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
734 $(archfile) ignored
c79688eb 735
604259a0
FCE
736cgen-decode: force
737 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
738 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
739 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
740 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
741
742cgen-cpu-decode: force
743 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
744 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
745 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
746 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
747
748cgen-desc: force
749 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
750 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81 751 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
ad6e5d2e 752 $(archfile) ignored $(opcfile)
604259a0 753
c906108c 754## End COMMON_POST_CONFIG_FRAG
This page took 0.472208 seconds and 4 git commands to generate.