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