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