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