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