968378cafe621b04dbb42b99a4dd495906a13e06
[deliverable/binutils-gdb.git] / sim / mn10300 / Makefile.in
1 # Makefile template for Configure for the mn10300 sim library.
2 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
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
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
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.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 ## COMMON_PRE_CONFIG_FRAG
19
20 MN10300_OBJS = \
21 itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
22 $(SIM_NEW_COMMON_OBJS) \
23 op_utils.o \
24 sim-resume.o
25
26 SIM_OBJS = $(MN10300_OBJS) interp.o
27
28 SIM_EXTRA_HW_DEVICES = mn103cpu mn103int mn103tim mn103ser mn103iop
29
30 SIM_EXTRA_CLEAN = clean-igen
31 # Extra dependencies for "sim-main.h"
32 SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
33
34 # List of extra flags to always pass to $(CC).
35 SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
36
37 ## COMMON_POST_CONFIG_FRAG
38
39 BUILT_SRC_FROM_IGEN = \
40 icache.h \
41 icache.c \
42 idecode.h \
43 idecode.c \
44 semantics.h \
45 semantics.c \
46 model.h \
47 model.c \
48 support.h \
49 support.c \
50 itable.h \
51 itable.c \
52 engine.h \
53 engine.c \
54 irun.c
55 $(BUILT_SRC_FROM_IGEN): tmp-igen
56
57
58 .PHONY: clean-igen
59 clean-igen:
60 rm -f $(BUILT_SRC_FROM_IGEN)
61 rm -f tmp-igen tmp-insns
62
63 IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
64 IGEN_INSN=$(srcdir)/mn10300.igen
65 IGEN_INSN_INC=$(srcdir)/am33.igen $(srcdir)/am33-2.igen
66 IGEN_DC=$(srcdir)/mn10300.dc
67 tmp-igen: $(IGEN_INSN) $(IGEN_INSN_INC) $(IGEN_DC) $(IGEN)
68 $(IGEN_RUN) \
69 $(IGEN_TRACE) \
70 -G gen-direct-access \
71 -M mn10300,am33 -G gen-multi-sim=am33 \
72 -M am33_2 \
73 -I $(srcdir) \
74 -i $(IGEN_INSN) \
75 -o $(IGEN_DC) \
76 -x \
77 -n icache.h -hc tmp-icache.h \
78 -n icache.c -c tmp-icache.c \
79 -n semantics.h -hs tmp-semantics.h \
80 -n semantics.c -s tmp-semantics.c \
81 -n idecode.h -hd tmp-idecode.h \
82 -n idecode.c -d tmp-idecode.c \
83 -n model.h -hm tmp-model.h \
84 -n model.c -m tmp-model.c \
85 -n support.h -hf tmp-support.h \
86 -n support.c -f tmp-support.c \
87 -n itable.h -ht tmp-itable.h \
88 -n itable.c -t tmp-itable.c \
89 -n engine.h -he tmp-engine.h \
90 -n engine.c -e tmp-engine.c \
91 -n irun.c -r tmp-irun.c
92 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
93 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
94 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
95 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
96 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
97 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
98 $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
99 $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
100 $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
101 $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
102 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
103 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
104 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
105 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
106 $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
107 touch tmp-igen
This page took 0.047363 seconds and 3 git commands to generate.