sim: cgen: tweak trace format
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
c906108c 1# Makefile fragment for common parts of all simulators.
3666a048 2# Copyright 1997-2021 Free Software Foundation, Inc.
c906108c
SS
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
4744ac1b 7# the Free Software Foundation; either version 3 of the License, or
c906108c 8# (at your option) any later version.
4744ac1b 9#
c906108c
SS
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.
4744ac1b 14#
c906108c 15# You should have received a copy of the GNU General Public License
4744ac1b 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
17
18# This Makefile fragment consists of two separate parts.
19# They are merged into the final Makefile at points denoted by
20# "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
21#
22# The target Makefile should look like:
23#
24#># Copyright blah blah
25#>
26#>## COMMON_PRE_CONFIG_FRAG
27#>
28#># Any overrides necessary for the SIM_FOO config vars.
29#>SIM_FOO = ...
30#>
31#>## COMMON_POST_CONFIG_FRAG
32#>
33#># Rules to build target specific .o's.
34
35## COMMON_PRE_CONFIG_FRAG
36
db2e4d67 37VPATH = @srcdir@:$(srccom)
c906108c
SS
38srcdir = @srcdir@
39srccom = $(srcdir)/../common
40srcroot = $(srcdir)/../..
7b064844 41srcsim = $(srcdir)/..
c906108c
SS
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@
1428dced 55datarootdir = @datarootdir@
c906108c
SS
56mandir = @mandir@
57man1dir = $(mandir)/man1
58infodir = @infodir@
59includedir = @includedir@
60
6bb11ab3 61lt_cv_dlopen_libs = @lt_cv_dlopen_libs@
c906108c
SS
62# This can be referenced by the gettext configuration code.
63top_builddir = ..
64
65EXEEXT = @EXEEXT@
66SHELL = @SHELL@
67
68INSTALL = @INSTALL@
69INSTALL_PROGRAM = @INSTALL_PROGRAM@
70INSTALL_DATA = @INSTALL_DATA@
71
72CC = @CC@
46f900c0 73C_DIALECT = @C_DIALECT@
c906108c 74CC_FOR_BUILD = @CC_FOR_BUILD@
c2783492 75CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
c906108c 76CFLAGS = @CFLAGS@
dc11500a
MF
77CPPFLAGS = @CPPFLAGS@
78CXXFLAGS = @CXXFLAGS@
79LDFLAGS = @LDFLAGS@
c906108c 80
c906108c
SS
81SIM_ALIGNMENT = @sim_alignment@
82SIM_BITSIZE = @sim_bitsize@
83SIM_DEFAULT_MODEL = @sim_default_model@
84SIM_ENDIAN = @sim_endian@
c906108c
SS
85SIM_FLOAT = @sim_float@
86SIM_HW_CFLAGS = @sim_hw_cflags@
87SIM_HW_OBJS = @sim_hw_objs@
88SIM_HW = @sim_hw@
c906108c 89SIM_INLINE = @sim_inline@
c906108c
SS
90SIM_RESERVED_BITS = @sim_reserved_bits@
91SIM_SCACHE = @sim_scache@
d4f3574e
SS
92WARN_CFLAGS = @WARN_CFLAGS@
93WERROR_CFLAGS = @WERROR_CFLAGS@
94SIM_WARN_CFLAGS = $(WARN_CFLAGS)
95SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c 96
c906108c
SS
97AR = @AR@
98AR_FLAGS = rc
99RANLIB = @RANLIB@
100MAKEINFO = makeinfo
101
db2e4d67
MF
102# Dependency tracking information.
103DEPMODE = @CCDEPMODE@
104DEPDIR = @DEPDIR@
105depcomp = $(SHELL) $(srcroot)/depcomp
106
107# Note that these are overridden by GNU make-specific code below if
108# GNU make is used. The overrides implement dependency tracking.
46f900c0 109COMPILE.pre = $(CC) $(C_DIALECT)
db2e4d67
MF
110COMPILE.post = -c -o $@
111COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
112POSTCOMPILE = @true
c906108c 113
2b8d134b
SM
114# igen leaks memory, and therefore makes AddressSanitizer unhappy. Disable
115# leak detection while running it.
116IGEN = ASAN_OPTIONS=detect_leaks=0 ../igen/igen
117
c906108c
SS
118# Each simulator's Makefile.in defines one or more of these variables
119# to override our settings as necessary. There is no need to define these
120# in the simulator's Makefile.in if one is using the default value. In fact
121# it's preferable not to.
122
123# List of object files, less common parts.
124SIM_OBJS =
125# List of extra dependencies.
126# Generally this consists of simulator specific files included by sim-main.h.
127SIM_EXTRA_DEPS =
128# List of flags to always pass to $(CC).
129SIM_EXTRA_CFLAGS =
130# List of extra libraries to link with.
131SIM_EXTRA_LIBS =
c906108c 132# List of main object files for `run'.
465fb143 133SIM_RUN_OBJS = nrun.o
c906108c
SS
134# Dependency of `install' to install any extra files.
135SIM_EXTRA_INSTALL =
136# Dependency of `clean' to clean any extra files.
137SIM_EXTRA_CLEAN =
d690312f
CD
138# Likewise `distclean'
139SIM_EXTRA_DISTCLEAN =
c906108c
SS
140
141# Every time a new general purpose source file was added every target's
142# Makefile.in needed to be updated to include the file in SIM_OBJS.
143# This doesn't scale.
144# This variable specifies all the generic stuff common to the newer simulators.
145# Things like sim-reason.o can't go here as the cpu may provide its own
146# (though hopefully in time that won't be so). Things like sim-bits.o can go
147# here. Some files are used by all simulators (e.g. callback.o).
148# Those files are specified in LIB_OBJS below.
149
150SIM_COMMON_HW_OBJS = \
151 hw-alloc.o \
152 hw-base.o \
153 hw-device.o \
154 hw-events.o \
155 hw-handles.o \
156 hw-instances.o \
157 hw-ports.o \
158 hw-properties.o \
159 hw-tree.o \
160 sim-hw.o \
161
162SIM_NEW_COMMON_OBJS = \
163 sim-arange.o \
164 sim-bits.o \
6e4f085c 165 sim-close.o \
2419798b 166 sim-command.o \
c906108c
SS
167 sim-config.o \
168 sim-core.o \
78e9aa70 169 sim-cpu.o \
c906108c 170 sim-endian.o \
122bbfb5 171 sim-engine.o \
c906108c
SS
172 sim-events.o \
173 sim-fpu.o \
5e744ef8 174 sim-hload.o \
122bbfb5 175 sim-hrw.o \
c906108c
SS
176 sim-io.o \
177 sim-info.o \
178 sim-load.o \
179 sim-memopt.o \
0d585950 180 sim-model.o \
c906108c
SS
181 sim-module.o \
182 sim-options.o \
183 sim-profile.o \
797eee42
MF
184 sim-reason.o \
185 sim-reg.o \
c906108c 186 sim-signal.o \
797eee42 187 sim-stop.o \
61a0c964 188 sim-syscall.o \
c906108c
SS
189 sim-trace.o \
190 sim-utils.o \
191 sim-watch.o \
192 \
193 $(SIM_HW_OBJS) \
194
80532737
DE
195# cgen-sim.h and the headers it includes
196CGEN_SIM_DEPS = \
197 $(srccom)/cgen-sim.h \
c906108c 198 $(srccom)/cgen-defs.h \
c906108c 199 $(srccom)/cgen-scache.h \
80532737
DE
200 $(srccom)/cgen-fpu.h \
201 $(srccom)/cgen-par.h \
202 $(srccom)/cgen-cpu.h \
c906108c 203 $(srccom)/cgen-trace.h \
80532737
DE
204 cpuall.h
205
206# Add this to SIM_EXTRA_DEPS.
207CGEN_INCLUDE_DEPS = \
208 $(CGEN_SIM_DEPS) \
209 $(srccom)/cgen-engine.h \
c906108c
SS
210 $(srccom)/cgen-types.h \
211 $(srcdir)/../../include/opcode/cgen.h
212
213## End COMMON_PRE_CONFIG_FRAG
214
215## COMMON_POST_CONFIG_FRAG
216
217CONFIG_CFLAGS = \
218 @DEFS@ \
c906108c 219 $(SIM_DEFAULT_MODEL) \
c906108c
SS
220 $(SIM_ALIGNMENT) \
221 $(SIM_BITSIZE) \
222 $(SIM_ENDIAN) \
c906108c
SS
223 $(SIM_FLOAT) \
224 $(SIM_HW_CFLAGS) \
c906108c 225 $(SIM_INLINE) \
c906108c
SS
226 $(SIM_RESERVED_BITS) \
227 $(SIM_SCACHE) \
d4f3574e
SS
228 $(SIM_WARN_CFLAGS) \
229 $(SIM_WERROR_CFLAGS) \
10737236 230 $(SIM_HARDWARE)
c906108c
SS
231CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
232 -I../../include -I$(srcroot)/include \
233 -I../../bfd -I$(srcroot)/bfd \
234 -I../../opcodes -I$(srcroot)/opcodes \
79730a3b 235 @INCINTL@
10737236 236ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(SIM_EXTRA_CFLAGS) $(CFLAGS)
c2783492 237BUILD_CFLAGS = $(CFLAGS_FOR_BUILD) $(CSEARCH)
c906108c 238
10737236 239COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(SIM_EXTRA_CFLAGS)
c906108c 240
aadc9410 241ZLIB = @zlibdir@ -lz
c906108c 242LIBIBERTY_LIB = ../../libiberty/libiberty.a
79730a3b 243BFD_LIB = ../../bfd/libbfd.a
6bb11ab3 244@PLUGINS_TRUE@LIBDL = @lt_cv_dlopen_libs@
c906108c 245OPCODES_LIB = ../../opcodes/libopcodes.a
20e95c23
DJ
246LIBINTL = @LIBINTL@
247LIBINTL_DEP = @LIBINTL_DEP@
79730a3b 248CONFIG_LIBS = @LIBS@ $(ZLIB)
ed30adf7 249LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB)
20e95c23 250EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
6bb11ab3 251 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) $(LIBDL)
c906108c 252
8e5f1516
MF
253LIB_OBJS = callback.o modules.o syscall.o targ-map.o version.o \
254 $(SIM_OBJS)
c906108c 255
c6c7769d 256COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS)
e7d9022b 257LINK_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(LDFLAGS_FOR_BUILD) -o $@
c6c7769d 258
c906108c
SS
259RUNTESTFLAGS =
260
3c25f8c7
AC
261callback_h = $(srcroot)/include/gdb/callback.h
262remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
263
f8069d55 264all: libsim.a run$(EXEEXT) .gdbinit
c906108c
SS
265
266libsim.a: $(LIB_OBJS)
267 rm -f libsim.a
268 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
269 $(RANLIB) libsim.a
270
4ec242d7 271run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
be091327 272 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
c906108c
SS
273 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
274
c906108c
SS
275# FIXME: Ideally, callback.o and friends live in a library outside of
276# both the gdb and simulator source trees (e.g. devo/remote. Not
277# devo/libremote because this directory would contain more than just
278# a library).
279
c6c7769d
MF
280gentmap.o: Makefile $(srccom)/gentmap.c $(srccom)/nltvals.def
281 $(COMPILE_FOR_BUILD) -o $@ -c $(srccom)/gentmap.c $(NL_TARGET)
282
283gentmap: gentmap.o
284 $(LINK_FOR_BUILD) $<
c906108c
SS
285
286targ-vals.h targ-map.c: stamp-tvals
287stamp-tvals: gentmap
288 rm -f tmp-tvals.h tmp-tmap.c
289 ./gentmap -h >tmp-tvals.h
290 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
291 ./gentmap -c >tmp-tmap.c
292 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
293 touch stamp-tvals
294
67f8b42f 295version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/sim/common/create-version.sh
f89f33e5
MF
296 $(SHELL) $(srcroot)/sim/common/create-version.sh $(srcroot)/gdb $@.tmp
297 $(SHELL) $(srcroot)/move-if-change $@.tmp $@
298 touch $@
6efef468 299
c906108c
SS
300#
301# Rules for building sim-* components. Triggered by listing the corresponding
302# .o file in the list of simulator targets.
303#
304
305sim_main_headers = \
306 sim-main.h \
08cd3760
RE
307 $(sim-assert_h) \
308 $(sim-base_h) \
309 $(sim-cpu_h) \
310 $(sim-engine_h) \
311 $(sim-events_h) \
312 $(sim-memopt_h) \
313 $(sim-model_h) \
314 $(sim-module_h) \
315 $(sim-profile_h) \
316 $(sim-trace_h) \
317 $(sim-watch_h) \
318 $(sim-basics_h) \
c906108c
SS
319 $(SIM_EXTRA_DEPS)
320
321# Exported version of sim_main_headers.
322SIM_MAIN_DEPS = \
323 $(sim_main_headers)
324
08cd3760 325sim-alu_h = $(srccom)/sim-alu.h
ef986697 326sim-arange_h = $(srccom)/sim-arange.h
c906108c 327sim-assert_h = $(srccom)/sim-assert.h
08cd3760
RE
328sim-base_h = $(srccom)/sim-base.h \
329 $(sim-module_h) \
330 $(sim-trace_h) \
331 $(sim-core_h) \
332 $(sim-events_h) \
333 $(sim-profile_h) \
334 $(sim-model_h) \
335 $(sim-io_h) \
336 $(sim-engine_h) \
337 $(sim-watch_h) \
338 $(sim-memopt_h) \
339 $(sim-cpu_h)
340sim-basics_h = $(srccom)/sim-basics.h \
08cd3760 341 $(sim-config_h) \
70ae6611 342 $(callback_h) \
08cd3760
RE
343 $(sim-inline_h) \
344 $(sim-types_h) \
345 $(sim-bits_h) \
346 $(sim-endian_h) \
347 $(sim-signal_h) \
348 $(sim-arange_h) \
349 $(sim-utils_h)
350sim-bits_h = $(srccom)/sim-bits.h \
351 $(srccom)/sim-bits.c
c906108c 352sim-config_h = $(srccom)/sim-config.h
c906108c 353sim-core_h = $(srccom)/sim-core.h
08cd3760
RE
354sim-cpu_h = $(srccom)/sim-cpu.h
355sim-endian_h = $(srccom)/sim-endian.h \
356 $(srccom)/sim-endian.c
c906108c
SS
357sim-engine_h = $(srccom)/sim-engine.h
358sim-events_h = $(srccom)/sim-events.h
359sim-fpu_h = $(srccom)/sim-fpu.h
08cd3760
RE
360sim-hw_h = $(srccom)/sim-hw.h
361sim-inline_h = $(srccom)/sim-inline.h
c906108c 362sim-io_h = $(srccom)/sim-io.h
08cd3760
RE
363sim-memopt_h = $(srccom)/sim-memopt.h
364sim-model_h = $(srccom)/sim-model.h
365sim-module_h = $(srccom)/sim-module.h
366sim-n-bits_h = $(srccom)/sim-n-bits.h
367sim-n-core_h = $(srccom)/sim-n-core.h
368sim-n-endian_h = $(srccom)/sim-n-endian.h
c906108c 369sim-options_h = $(srccom)/sim-options.h
08cd3760 370sim-profile_h = $(srccom)/sim-profile.h
c906108c 371sim-signal_h = $(srccom)/sim-signal.h
08cd3760
RE
372sim-trace_h = $(srccom)/sim-trace.h
373sim-types_h = $(srccom)/sim-types.h
374sim-utils_h = $(srccom)/sim-utils.h
375sim-watch_h = $(srccom)/sim-watch.h
c906108c
SS
376
377hw-alloc_h = $(srccom)/hw-alloc.h
378hw-base_h = $(srccom)/hw-base.h
379hw-device_h = $(srccom)/hw-device.h
380hw-events_h = $(srccom)/hw-events.h
381hw-handles_h = $(srccom)/hw-handles.h
382hw-instances_h = $(srccom)/hw-instances.h
383hw-ports_h = $(srccom)/hw-ports.h
384hw-properties_h = $(srccom)/hw-properties.h
385hw-tree_h = $(srccom)/hw-tree.h
386
387hw_main_headers = \
388 $(srccom)/hw-main.h \
389 $(hw-alloc_h) \
390 $(hw-base_h) \
391 $(hw-device_h) \
392 $(hw-events_h) \
393 $(hw-instances_h) \
394 $(hw-handles_h) \
395 $(hw-ports_h) \
396 $(hw-properties_h) \
397
db2e4d67
MF
398#
399# Dependency tracking. Most of this is conditional on GNU Make being
400# found by configure; if GNU Make is not found, we fall back to a
401# simpler scheme.
402#
403
efd82ac7 404ifeq ($(DEPMODE),depmode=gcc3)
db2e4d67
MF
405# Note that we put the dependencies into a .Tpo file, then move them
406# into place if the compile succeeds. We need this because gcc does
407# not atomically write the dependency output file.
efd82ac7
TT
408override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
409 -MF $(DEPDIR)/$(basename $(@F)).Tpo
410override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
411 $(DEPDIR)/$(basename $(@F)).Po
412else
413override COMPILE.pre = source='$<' object='$@' libtool=no \
414 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
db2e4d67
MF
415# depcomp handles atomicity for us, so we don't need a postcompile
416# step.
efd82ac7
TT
417override POSTCOMPILE =
418endif
db2e4d67
MF
419
420all_object_files = $(LIB_OBJS) $(SIM_RUN_OBJS)
421generated_files = \
422 $(SIM_EXTRA_DEPS) \
937a049c 423 config.h \
db2e4d67 424 hw-config.h \
8e5f1516 425 modules.c \
db2e4d67
MF
426 targ-map.c \
427 targ-vals.h \
428 version.c
429
430# Ensure that generated files are created early. Use order-only
431# dependencies if available. They require GNU make 3.80 or newer,
432# and the .VARIABLES variable was introduced at the same time.
efd82ac7
TT
433ifdef .VARIABLES
434$(all_object_files): | $(generated_files)
435else
db2e4d67 436$(all_object_files) : $(generated_files)
efd82ac7 437endif
db2e4d67
MF
438
439# Dependencies.
efd82ac7 440-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
c906108c 441
c906108c 442# FIXME This is one very simple-minded way of generating the file hw-config.h
b396d3a1
TT
443hw-config.h: stamp-hw ; @true
444stamp-hw: Makefile.in $(srccom)/Make-common.in config.status Makefile
c906108c
SS
445 rm -f tmp-hw.h
446 echo "/* generated by Makefile */" > tmp-hw.h
96987c2b
JB
447 sim_hw="$(SIM_HW)"; \
448 for hw in $$sim_hw ; do \
c906108c
SS
449 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
450 done >> tmp-hw.h
451 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
96987c2b
JB
452 sim_hw="$(SIM_HW)"; \
453 for hw in $$sim_hw ; do \
c906108c
SS
454 echo " dv_$${hw}_descriptor," ; \
455 done >> tmp-hw.h
456 echo " NULL," >> tmp-hw.h
457 echo "};" >> tmp-hw.h
b396d3a1
TT
458 $(SHELL) $(srcroot)/move-if-change tmp-hw.h hw-config.h
459 @echo stamp > stamp-hw
c906108c 460
c906108c
SS
461test-hw-events: $(srccom)/hw-events.c libsim.a
462 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
463 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
464
8e5f1516
MF
465# See sim_pre_argv_init and sim_module_install in sim-module.c for more details.
466modules.c: Makefile $(SIM_OBJS:.o=.c)
467 @echo Generating $@
468 @LANG=C ; export LANG ; \
469 LC_ALL=C ; export LC_ALL ; \
470 sed -n -e '/^sim_install_/{s/^\(sim_install_[a-z_0-9A-Z]*\).*/\1/;p}' $^ | sort >$@.l-tmp
471 @set -e; (\
472 echo '/* Do not modify this file. */'; \
473 echo '/* It is created automatically by the Makefile. */'; \
474 echo '#include "libiberty.h"'; \
475 echo '#include "sim-module.h"'; \
476 sed -e 's:\(.*\):extern __attribute__((__weak__)) MODULE_INIT_FN \1;:' $@.l-tmp; \
477 echo 'MODULE_INSTALL_FN * const sim_modules_detected[] = {'; \
478 sed -e 's:\(.*\): \1,:' $@.l-tmp; \
479 echo '};'; \
480 echo 'const int sim_modules_detected_len = ARRAY_SIZE (sim_modules_detected);'; \
481 ) >$@.tmp
482 $(SHELL) $(srcroot)/move-if-change $@.tmp $@
483 @rm -f $@.l-tmp $@.tmp
484
c906108c
SS
485# CGEN support.
486
487# For use in Makefile.in for cpu-specific files.
488CGEN_MAIN_CPU_DEPS = \
489 $(SIM_MAIN_DEPS) \
c906108c 490 $(srccom)/cgen-ops.h \
80532737 491 $(srccom)/cgen-mem.h
c906108c 492
c906108c
SS
493# Support targets.
494
495install: install-common $(SIM_EXTRA_INSTALL)
496
497install-common: installdirs
a0e674c1 498 a=`basename "$$(pwd)"`; \
c906108c 499 n=`echo run | sed '$(program_transform_name)'`; \
a0e674c1 500 [ "$(SIM_PRIMARY_TARGET)" = "$$a" ] || n="$$n-$$a"; \
149cfe5b 501 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
a0e674c1
MF
502 n="$(target_alias)-sim"; \
503 a=`basename "$$(pwd)"`; \
504 [ "$(SIM_PRIMARY_TARGET)" = "$$a" ] || n="$$n-$$a"; \
505 n="lib$$n.a"; \
149cfe5b
DJ
506 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
507 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
c906108c
SS
508
509installdirs:
149cfe5b
DJ
510 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
511 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
c906108c
SS
512
513check:
c906108c 514
0d0878d7
MF
515html:
516clean-html:
517install-html:
518
c906108c
SS
519info:
520clean-info:
521install-info:
522
0d0878d7
MF
523pdf:
524clean-pdf:
525install-pdf:
526
c906108c
SS
527.NOEXPORT:
528MAKEOVERRIDES=
529
530tags etags: TAGS
531
532# Macros like EXTERN_SIM_CORE confuse tags.
533# And the sim-n-foo.h files create functions that can't be found either.
534TAGS: force
535 cd $(srcdir) && \
509deab2 536 etags --regex '/^\([[:lower:]_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
c906108c
SS
537 *.[ch] ../common/*.[ch]
538
be866656 539mostlyclean clean: $(SIM_EXTRA_CLEAN)
c906108c 540 rm -f *.[oa] *~ core
4ec242d7 541 rm -f run$(EXEEXT) libsim.a
b396d3a1 542 rm -f hw-config.h stamp-hw
c906108c
SS
543 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
544 if [ ! -f Make-common.in ] ; then \
545 rm -f $(BUILT_SRC_FROM_COMMON) ; \
546 fi
547 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
548
be866656 549distclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
c906108c
SS
550 rm -f TAGS
551 rm -f Makefile config.cache config.log config.status .gdbinit
1b393626 552 rm -f config.h stamp-h
c906108c
SS
553
554.c.o:
db2e4d67
MF
555 $(COMPILE) $<
556 $(POSTCOMPILE)
c906108c
SS
557
558# Dummy target to force execution of dependent targets.
559force:
560
561Makefile: Makefile.in $(srccom)/Make-common.in config.status
562 CONFIG_HEADERS= $(SHELL) ./config.status
563
564config.status: configure
565 $(SHELL) ./config.status --recheck
566
567config.h: stamp-h ; @true
568stamp-h: config.in config.status
569 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
570
571.gdbinit: # config.status $(srccom)/gdbinit.in
572 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
573
574
604259a0
FCE
575# CGEN support
576
577CGENDIR = @cgendir@
9ab46d53 578CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
604259a0 579CGENFLAGS = -v
e3e473da 580CGEN_CPU_DIR = $(CGENDIR)/cpu
604259a0 581
6a8b8615
DE
582# Most ports use the files here instead of cgen/cpu.
583CPU_DIR = $(srcroot)/cpu
584
7ede505a 585CGEN_READ_SCM = $(CGENDIR)/sim.scm
e3e473da
BE
586CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
587CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
588CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
589CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
604259a0
FCE
590
591# Various choices for which cpu specific files to generate.
2c2a86d7
DE
592# These are passed to cgen.sh in the "extrafiles" argument.
593CGEN_CPU_EXTR = /extr/
594CGEN_CPU_READ = /read/
595CGEN_CPU_WRITE = /write/
596CGEN_CPU_SEM = /sem/
597CGEN_CPU_SEMSW = /semsw/
604259a0
FCE
598
599CGEN_FLAGS_TO_PASS = \
9ab46d53 600 CGEN='$(CGEN)' \
604259a0
FCE
601 CGENFLAGS="$(CGENFLAGS)"
602
603# We store the generated files in the source directory until we decide to
604# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
605
606cgen-arch: force
607 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
608 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
609 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
610 $(archfile) ignored
3c25f8c7 611
604259a0
FCE
612cgen-cpu: force
613 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
614 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
615 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
616 $(archfile) "$(EXTRAFILES)"
604259a0 617
c79688eb
BE
618cgen-defs: force
619 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
620 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
621 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
622 $(archfile) ignored
c79688eb 623
604259a0
FCE
624cgen-decode: force
625 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
626 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
627 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
628 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
629
630cgen-cpu-decode: force
631 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
632 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
633 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
634 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
635
636cgen-desc: force
637 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
638 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81 639 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
ad6e5d2e 640 $(archfile) ignored $(opcfile)
604259a0 641
c906108c 642## End COMMON_POST_CONFIG_FRAG
This page took 1.103621 seconds and 4 git commands to generate.