]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/Make-common.in
sim: drop use of bfd/configure.host
[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
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
SS
74CC_FOR_BUILD = @CC_FOR_BUILD@
75CFLAGS = @CFLAGS@
dc11500a
MF
76CPPFLAGS = @CPPFLAGS@
77CXXFLAGS = @CXXFLAGS@
78LDFLAGS = @LDFLAGS@
c906108c 79
c906108c
SS
80SIM_ALIGNMENT = @sim_alignment@
81SIM_BITSIZE = @sim_bitsize@
82SIM_DEFAULT_MODEL = @sim_default_model@
83SIM_ENDIAN = @sim_endian@
c906108c
SS
84SIM_FLOAT = @sim_float@
85SIM_HW_CFLAGS = @sim_hw_cflags@
86SIM_HW_OBJS = @sim_hw_objs@
87SIM_HW = @sim_hw@
c906108c 88SIM_INLINE = @sim_inline@
c906108c
SS
89SIM_RESERVED_BITS = @sim_reserved_bits@
90SIM_SCACHE = @sim_scache@
d4f3574e
SS
91WARN_CFLAGS = @WARN_CFLAGS@
92WERROR_CFLAGS = @WERROR_CFLAGS@
93SIM_WARN_CFLAGS = $(WARN_CFLAGS)
94SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c 95
c906108c
SS
96AR = @AR@
97AR_FLAGS = rc
98RANLIB = @RANLIB@
99MAKEINFO = makeinfo
100
db2e4d67
MF
101# Dependency tracking information.
102DEPMODE = @CCDEPMODE@
103DEPDIR = @DEPDIR@
104depcomp = $(SHELL) $(srcroot)/depcomp
105
106# Note that these are overridden by GNU make-specific code below if
107# GNU make is used. The overrides implement dependency tracking.
46f900c0 108COMPILE.pre = $(CC) $(C_DIALECT)
db2e4d67
MF
109COMPILE.post = -c -o $@
110COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
111POSTCOMPILE = @true
c906108c
SS
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'.
465fb143 130SIM_RUN_OBJS = nrun.o
c906108c
SS
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 \
6e4f085c 164 sim-close.o \
2419798b 165 sim-command.o \
c906108c
SS
166 sim-config.o \
167 sim-core.o \
78e9aa70 168 sim-cpu.o \
c906108c 169 sim-endian.o \
122bbfb5 170 sim-engine.o \
c906108c
SS
171 sim-events.o \
172 sim-fpu.o \
5e744ef8 173 sim-hload.o \
122bbfb5 174 sim-hrw.o \
c906108c
SS
175 sim-io.o \
176 sim-info.o \
177 sim-load.o \
178 sim-memopt.o \
0d585950 179 sim-model.o \
c906108c
SS
180 sim-module.o \
181 sim-options.o \
182 sim-profile.o \
797eee42
MF
183 sim-reason.o \
184 sim-reg.o \
c906108c 185 sim-signal.o \
797eee42 186 sim-stop.o \
61a0c964 187 sim-syscall.o \
c906108c
SS
188 sim-trace.o \
189 sim-utils.o \
190 sim-watch.o \
191 \
192 $(SIM_HW_OBJS) \
193
80532737
DE
194# cgen-sim.h and the headers it includes
195CGEN_SIM_DEPS = \
196 $(srccom)/cgen-sim.h \
c906108c 197 $(srccom)/cgen-defs.h \
c906108c 198 $(srccom)/cgen-scache.h \
80532737
DE
199 $(srccom)/cgen-fpu.h \
200 $(srccom)/cgen-par.h \
201 $(srccom)/cgen-cpu.h \
c906108c 202 $(srccom)/cgen-trace.h \
80532737
DE
203 cpuall.h
204
205# Add this to SIM_EXTRA_DEPS.
206CGEN_INCLUDE_DEPS = \
207 $(CGEN_SIM_DEPS) \
208 $(srccom)/cgen-engine.h \
c906108c
SS
209 $(srccom)/cgen-types.h \
210 $(srcdir)/../../include/opcode/cgen.h
211
212## End COMMON_PRE_CONFIG_FRAG
213
214## COMMON_POST_CONFIG_FRAG
215
216CONFIG_CFLAGS = \
217 @DEFS@ \
c906108c 218 $(SIM_DEFAULT_MODEL) \
c906108c
SS
219 $(SIM_ALIGNMENT) \
220 $(SIM_BITSIZE) \
221 $(SIM_ENDIAN) \
c906108c
SS
222 $(SIM_FLOAT) \
223 $(SIM_HW_CFLAGS) \
c906108c 224 $(SIM_INLINE) \
c906108c
SS
225 $(SIM_RESERVED_BITS) \
226 $(SIM_SCACHE) \
d4f3574e
SS
227 $(SIM_WARN_CFLAGS) \
228 $(SIM_WERROR_CFLAGS) \
c906108c 229 $(SIM_HARDWARE) \
aa09469f 230 $(SIM_EXTRA_CFLAGS)
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@
c906108c
SS
236ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
237BUILD_CFLAGS = -g -O $(CSEARCH)
238
239COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
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)
20e95c23 249LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
c906108c 250 $(SIM_EXTRA_LIBDEPS)
20e95c23 251EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
6bb11ab3 252 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) $(LIBDL)
c906108c 253
6efef468 254LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
c906108c
SS
255
256RUNTESTFLAGS =
257
3c25f8c7
AC
258callback_h = $(srcroot)/include/gdb/callback.h
259remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
260
4ec242d7 261all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
c906108c
SS
262
263libsim.a: $(LIB_OBJS)
264 rm -f libsim.a
265 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
266 $(RANLIB) libsim.a
267
4ec242d7 268run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
be091327 269 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
c906108c
SS
270 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
271
c906108c
SS
272# FIXME: Ideally, callback.o and friends live in a library outside of
273# both the gdb and simulator source trees (e.g. devo/remote. Not
274# devo/libremote because this directory would contain more than just
275# a library).
276
99d8e879 277gentmap: Makefile $(srccom)/gentmap.c $(srccom)/nltvals.def
c906108c
SS
278 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
279
280targ-vals.h targ-map.c: stamp-tvals
281stamp-tvals: gentmap
282 rm -f tmp-tvals.h tmp-tmap.c
283 ./gentmap -h >tmp-tvals.h
284 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
285 ./gentmap -c >tmp-tmap.c
286 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
287 touch stamp-tvals
288
67f8b42f 289version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/sim/common/create-version.sh
f89f33e5
MF
290 $(SHELL) $(srcroot)/sim/common/create-version.sh $(srcroot)/gdb $@.tmp
291 $(SHELL) $(srcroot)/move-if-change $@.tmp $@
292 touch $@
6efef468 293
c906108c
SS
294#
295# Rules for building sim-* components. Triggered by listing the corresponding
296# .o file in the list of simulator targets.
297#
298
299sim_main_headers = \
300 sim-main.h \
08cd3760
RE
301 $(sim-assert_h) \
302 $(sim-base_h) \
303 $(sim-cpu_h) \
304 $(sim-engine_h) \
305 $(sim-events_h) \
306 $(sim-memopt_h) \
307 $(sim-model_h) \
308 $(sim-module_h) \
309 $(sim-profile_h) \
310 $(sim-trace_h) \
311 $(sim-watch_h) \
312 $(sim-basics_h) \
c906108c
SS
313 $(SIM_EXTRA_DEPS)
314
315# Exported version of sim_main_headers.
316SIM_MAIN_DEPS = \
317 $(sim_main_headers)
318
08cd3760 319sim-alu_h = $(srccom)/sim-alu.h
ef986697 320sim-arange_h = $(srccom)/sim-arange.h
c906108c 321sim-assert_h = $(srccom)/sim-assert.h
08cd3760
RE
322sim-base_h = $(srccom)/sim-base.h \
323 $(sim-module_h) \
324 $(sim-trace_h) \
325 $(sim-core_h) \
326 $(sim-events_h) \
327 $(sim-profile_h) \
328 $(sim-model_h) \
329 $(sim-io_h) \
330 $(sim-engine_h) \
331 $(sim-watch_h) \
332 $(sim-memopt_h) \
333 $(sim-cpu_h)
334sim-basics_h = $(srccom)/sim-basics.h \
08cd3760 335 $(sim-config_h) \
70ae6611 336 $(callback_h) \
08cd3760
RE
337 $(sim-inline_h) \
338 $(sim-types_h) \
339 $(sim-bits_h) \
340 $(sim-endian_h) \
341 $(sim-signal_h) \
342 $(sim-arange_h) \
343 $(sim-utils_h)
344sim-bits_h = $(srccom)/sim-bits.h \
345 $(srccom)/sim-bits.c
c906108c 346sim-config_h = $(srccom)/sim-config.h
c906108c 347sim-core_h = $(srccom)/sim-core.h
08cd3760
RE
348sim-cpu_h = $(srccom)/sim-cpu.h
349sim-endian_h = $(srccom)/sim-endian.h \
350 $(srccom)/sim-endian.c
c906108c
SS
351sim-engine_h = $(srccom)/sim-engine.h
352sim-events_h = $(srccom)/sim-events.h
353sim-fpu_h = $(srccom)/sim-fpu.h
08cd3760
RE
354sim-hw_h = $(srccom)/sim-hw.h
355sim-inline_h = $(srccom)/sim-inline.h
c906108c 356sim-io_h = $(srccom)/sim-io.h
08cd3760
RE
357sim-memopt_h = $(srccom)/sim-memopt.h
358sim-model_h = $(srccom)/sim-model.h
359sim-module_h = $(srccom)/sim-module.h
360sim-n-bits_h = $(srccom)/sim-n-bits.h
361sim-n-core_h = $(srccom)/sim-n-core.h
362sim-n-endian_h = $(srccom)/sim-n-endian.h
c906108c 363sim-options_h = $(srccom)/sim-options.h
08cd3760 364sim-profile_h = $(srccom)/sim-profile.h
c906108c 365sim-signal_h = $(srccom)/sim-signal.h
08cd3760
RE
366sim-trace_h = $(srccom)/sim-trace.h
367sim-types_h = $(srccom)/sim-types.h
368sim-utils_h = $(srccom)/sim-utils.h
369sim-watch_h = $(srccom)/sim-watch.h
c906108c
SS
370
371hw-alloc_h = $(srccom)/hw-alloc.h
372hw-base_h = $(srccom)/hw-base.h
373hw-device_h = $(srccom)/hw-device.h
374hw-events_h = $(srccom)/hw-events.h
375hw-handles_h = $(srccom)/hw-handles.h
376hw-instances_h = $(srccom)/hw-instances.h
377hw-ports_h = $(srccom)/hw-ports.h
378hw-properties_h = $(srccom)/hw-properties.h
379hw-tree_h = $(srccom)/hw-tree.h
380
381hw_main_headers = \
382 $(srccom)/hw-main.h \
383 $(hw-alloc_h) \
384 $(hw-base_h) \
385 $(hw-device_h) \
386 $(hw-events_h) \
387 $(hw-instances_h) \
388 $(hw-handles_h) \
389 $(hw-ports_h) \
390 $(hw-properties_h) \
391
db2e4d67
MF
392#
393# Dependency tracking. Most of this is conditional on GNU Make being
394# found by configure; if GNU Make is not found, we fall back to a
395# simpler scheme.
396#
397
398@GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
399# Note that we put the dependencies into a .Tpo file, then move them
400# into place if the compile succeeds. We need this because gcc does
401# not atomically write the dependency output file.
402@GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
403@GMAKE_TRUE@ -MF $(DEPDIR)/$(basename $(@F)).Tpo
404@GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
405@GMAKE_TRUE@ $(DEPDIR)/$(basename $(@F)).Po
406@GMAKE_TRUE@else
407@GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
408@GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
409# depcomp handles atomicity for us, so we don't need a postcompile
410# step.
411@GMAKE_TRUE@override POSTCOMPILE =
412@GMAKE_TRUE@endif
413
414all_object_files = $(LIB_OBJS) $(SIM_RUN_OBJS)
415generated_files = \
416 $(SIM_EXTRA_DEPS) \
417 hw-config.h \
418 targ-map.c \
419 targ-vals.h \
420 version.c
421
422# Ensure that generated files are created early. Use order-only
423# dependencies if available. They require GNU make 3.80 or newer,
424# and the .VARIABLES variable was introduced at the same time.
425@GMAKE_TRUE@ifdef .VARIABLES
426@GMAKE_TRUE@$(all_object_files): | $(generated_files)
427@GMAKE_TRUE@else
428$(all_object_files) : $(generated_files)
429@GMAKE_TRUE@endif
430
431# Dependencies.
432@GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
c906108c 433
c906108c
SS
434# FIXME This is one very simple-minded way of generating the file hw-config.h
435hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
436 rm -f tmp-hw.h
437 echo "/* generated by Makefile */" > tmp-hw.h
96987c2b
JB
438 sim_hw="$(SIM_HW)"; \
439 for hw in $$sim_hw ; do \
c906108c
SS
440 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
441 done >> tmp-hw.h
442 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
96987c2b
JB
443 sim_hw="$(SIM_HW)"; \
444 for hw in $$sim_hw ; do \
c906108c
SS
445 echo " dv_$${hw}_descriptor," ; \
446 done >> tmp-hw.h
447 echo " NULL," >> tmp-hw.h
448 echo "};" >> tmp-hw.h
449 mv tmp-hw.h hw-config.h
450
c906108c
SS
451test-hw-events: $(srccom)/hw-events.c libsim.a
452 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
453 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
454
c906108c
SS
455# CGEN support.
456
457# For use in Makefile.in for cpu-specific files.
458CGEN_MAIN_CPU_DEPS = \
459 $(SIM_MAIN_DEPS) \
c906108c 460 $(srccom)/cgen-ops.h \
80532737 461 $(srccom)/cgen-mem.h
c906108c 462
c906108c
SS
463# Support targets.
464
465install: install-common $(SIM_EXTRA_INSTALL)
466
467install-common: installdirs
468 n=`echo run | sed '$(program_transform_name)'`; \
149cfe5b 469 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
c906108c 470 n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
149cfe5b
DJ
471 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
472 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
c906108c
SS
473
474installdirs:
149cfe5b
DJ
475 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
476 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
c906108c
SS
477
478check:
479 cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
480
481info:
482clean-info:
483install-info:
484
485.NOEXPORT:
486MAKEOVERRIDES=
487
488tags etags: TAGS
489
490# Macros like EXTERN_SIM_CORE confuse tags.
491# And the sim-n-foo.h files create functions that can't be found either.
492TAGS: force
493 cd $(srcdir) && \
509deab2 494 etags --regex '/^\([[:lower:]_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
c906108c
SS
495 *.[ch] ../common/*.[ch]
496
497clean: $(SIM_EXTRA_CLEAN)
498 rm -f *.[oa] *~ core
4ec242d7 499 rm -f run$(EXEEXT) libsim.a
c906108c
SS
500 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
501 if [ ! -f Make-common.in ] ; then \
502 rm -f $(BUILT_SRC_FROM_COMMON) ; \
503 fi
504 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
505
d690312f 506distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
c906108c
SS
507 rm -f TAGS
508 rm -f Makefile config.cache config.log config.status .gdbinit
1b393626 509 rm -f config.h stamp-h
c906108c
SS
510
511.c.o:
db2e4d67
MF
512 $(COMPILE) $<
513 $(POSTCOMPILE)
c906108c
SS
514
515# Dummy target to force execution of dependent targets.
516force:
517
518Makefile: Makefile.in $(srccom)/Make-common.in config.status
519 CONFIG_HEADERS= $(SHELL) ./config.status
520
521config.status: configure
522 $(SHELL) ./config.status --recheck
523
524config.h: stamp-h ; @true
525stamp-h: config.in config.status
526 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
527
528.gdbinit: # config.status $(srccom)/gdbinit.in
529 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
530
531
604259a0
FCE
532# CGEN support
533
534CGENDIR = @cgendir@
9ab46d53 535CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
604259a0 536CGENFLAGS = -v
e3e473da 537CGEN_CPU_DIR = $(CGENDIR)/cpu
604259a0 538
6a8b8615
DE
539# Most ports use the files here instead of cgen/cpu.
540CPU_DIR = $(srcroot)/cpu
541
7ede505a 542CGEN_READ_SCM = $(CGENDIR)/sim.scm
e3e473da
BE
543CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
544CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
545CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
546CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
604259a0
FCE
547
548# Various choices for which cpu specific files to generate.
2c2a86d7
DE
549# These are passed to cgen.sh in the "extrafiles" argument.
550CGEN_CPU_EXTR = /extr/
551CGEN_CPU_READ = /read/
552CGEN_CPU_WRITE = /write/
553CGEN_CPU_SEM = /sem/
554CGEN_CPU_SEMSW = /semsw/
604259a0
FCE
555
556CGEN_FLAGS_TO_PASS = \
9ab46d53 557 CGEN='$(CGEN)' \
604259a0
FCE
558 CGENFLAGS="$(CGENFLAGS)"
559
560# We store the generated files in the source directory until we decide to
561# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
562
563cgen-arch: force
564 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
565 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
566 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
567 $(archfile) ignored
3c25f8c7 568
604259a0
FCE
569cgen-cpu: force
570 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
571 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
572 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
573 $(archfile) "$(EXTRAFILES)"
604259a0 574
c79688eb
BE
575cgen-defs: force
576 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
577 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
578 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
579 $(archfile) ignored
c79688eb 580
604259a0
FCE
581cgen-decode: force
582 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
583 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
584 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
585 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
586
587cgen-cpu-decode: force
588 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
589 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81
DB
590 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
591 $(archfile) "$(EXTRAFILES)"
604259a0
FCE
592
593cgen-desc: force
594 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
595 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
ea52ff81 596 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
ad6e5d2e 597 $(archfile) ignored $(opcfile)
604259a0 598
c906108c 599## End COMMON_POST_CONFIG_FRAG