]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/mn10300/Makefile.in
sim: igen: harmonize tool variables
[thirdparty/binutils-gdb.git] / sim / mn10300 / Makefile.in
CommitLineData
c906108c 1# Makefile template for Configure for the mn10300 sim library.
3666a048 2# Copyright (C) 1996-2021 Free Software Foundation, Inc.
c906108c
SS
3# Written 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## COMMON_PRE_CONFIG_FRAG
19
599e0b9e 20MN10300_OBJS = \
c906108c
SS
21 itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
22 $(SIM_NEW_COMMON_OBJS) \
23 op_utils.o \
797eee42 24 sim-resume.o
c906108c
SS
25
26SIM_OBJS = $(MN10300_OBJS) interp.o
27
622c89b6 28SIM_EXTRA_CLEAN = clean-igen
6c0a25e9
AC
29# Extra dependencies for "sim-main.h"
30SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
c906108c 31
c906108c 32# List of extra flags to always pass to $(CC).
599e0b9e 33SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
c906108c
SS
34
35## COMMON_POST_CONFIG_FRAG
36
c906108c
SS
37BUILT_SRC_FROM_IGEN = \
38 icache.h \
39 icache.c \
40 idecode.h \
41 idecode.c \
42 semantics.h \
43 semantics.c \
44 model.h \
45 model.c \
46 support.h \
47 support.c \
48 itable.h \
49 itable.c \
50 engine.h \
51 engine.c \
52 irun.c
53$(BUILT_SRC_FROM_IGEN): tmp-igen
54
55
56.PHONY: clean-igen
57clean-igen:
58 rm -f $(BUILT_SRC_FROM_IGEN)
59 rm -f tmp-igen tmp-insns
60
c906108c 61IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
32b14776
JB
62IGEN_INSN=$(srcdir)/mn10300.igen
63IGEN_INSN_INC=$(srcdir)/am33.igen $(srcdir)/am33-2.igen
c906108c 64IGEN_DC=$(srcdir)/mn10300.dc
a55b92be
MF
65tmp-igen: $(IGEN_INSN) $(IGEN_INSN_INC) $(IGEN_DC) $(IGEN)
66 $(IGEN_RUN) \
c906108c
SS
67 $(IGEN_TRACE) \
68 -G gen-direct-access \
c2d11a7d 69 -M mn10300,am33 -G gen-multi-sim=am33 \
c76b4bab 70 -M am33_2 \
c2d11a7d 71 -I $(srcdir) \
c906108c
SS
72 -i $(IGEN_INSN) \
73 -o $(IGEN_DC) \
74 -x \
75 -n icache.h -hc tmp-icache.h \
76 -n icache.c -c tmp-icache.c \
77 -n semantics.h -hs tmp-semantics.h \
78 -n semantics.c -s tmp-semantics.c \
79 -n idecode.h -hd tmp-idecode.h \
80 -n idecode.c -d tmp-idecode.c \
81 -n model.h -hm tmp-model.h \
82 -n model.c -m tmp-model.c \
83 -n support.h -hf tmp-support.h \
84 -n support.c -f tmp-support.c \
85 -n itable.h -ht tmp-itable.h \
86 -n itable.c -t tmp-itable.c \
87 -n engine.h -he tmp-engine.h \
88 -n engine.c -e tmp-engine.c \
89 -n irun.c -r tmp-irun.c
90 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
91 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
92 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
93 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
94 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
95 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
96 $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
97 $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
98 $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
99 $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
100 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
101 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
102 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
103 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
104 $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
105 touch tmp-igen