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