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