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