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