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