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