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