]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/mn10300/Makefile.in
2004-06-26 Andrew Cagney <cagney@gnu.org>
[thirdparty/binutils-gdb.git] / sim / mn10300 / Makefile.in
CommitLineData
c906108c 1# Makefile template for Configure for the mn10300 sim library.
599e0b9e 2# Copyright (C) 1996, 1997, 2000, 2001, 2004 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
7# the Free Software Foundation; either version 2 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, write to the Free Software
17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19## COMMON_PRE_CONFIG_FRAG
20
599e0b9e 21MN10300_OBJS = \
c906108c
SS
22 itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
23 $(SIM_NEW_COMMON_OBJS) \
24 op_utils.o \
25 sim-engine.o \
26 sim-hload.o \
27 sim-hrw.o \
28 sim-resume.o \
29 sim-reason.o \
30 sim-stop.o \
31 dv-sockser.o
599e0b9e 32MN10300_INTERP_DEP =
c906108c
SS
33
34SIM_OBJS = $(MN10300_OBJS) interp.o
35
36# List of main object files for `run'.
599e0b9e 37SIM_RUN_OBJS = nrun.o
c906108c
SS
38
39SIM_EXTRA_CLEAN = clean-extra
6c0a25e9
AC
40# Extra dependencies for "sim-main.h"
41SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
c906108c
SS
42
43# Select mn10300 support in nltvals.def.
44NL_TARGET = -DNL_TARGET_mn10300
45
3c25f8c7 46INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h
c906108c
SS
47
48# List of extra flags to always pass to $(CC).
599e0b9e 49SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
c906108c
SS
50
51## COMMON_POST_CONFIG_FRAG
52
53
54#
55# Old generator (default)
56#
57
58simops.h: gencode
59 ./gencode -h >$@
60
61table.c: gencode simops.h
62 ./gencode >$@
63
64gencode.o: gencode.c $(INCLUDE)
65 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
66
67m10300-opc.o: $(srcdir)/../../opcodes/m10300-opc.c
68 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/m10300-opc.c
69
70gencode: gencode.o m10300-opc.o
71 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o m10300-opc.o $(BUILD_LIB)
72
cc274e7c 73idecode.o op_utils.o semantics.o simops.o: targ-vals.h
c906108c
SS
74
75
76BUILT_SRC_FROM_IGEN = \
77 icache.h \
78 icache.c \
79 idecode.h \
80 idecode.c \
81 semantics.h \
82 semantics.c \
83 model.h \
84 model.c \
85 support.h \
86 support.c \
87 itable.h \
88 itable.c \
89 engine.h \
90 engine.c \
91 irun.c
92$(BUILT_SRC_FROM_IGEN): tmp-igen
93
94
95.PHONY: clean-igen
96clean-igen:
97 rm -f $(BUILT_SRC_FROM_IGEN)
98 rm -f tmp-igen tmp-insns
99
100../igen/igen:
101 cd ../igen && $(MAKE)
102
103IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
a9e3a739 104IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen
c906108c
SS
105IGEN_DC=$(srcdir)/mn10300.dc
106tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
107 cd ../igen && $(MAKE)
108 ../igen/igen \
109 $(IGEN_TRACE) \
110 -G gen-direct-access \
c2d11a7d
JM
111 -M mn10300,am33 -G gen-multi-sim=am33 \
112 -I $(srcdir) \
c906108c
SS
113 -i $(IGEN_INSN) \
114 -o $(IGEN_DC) \
115 -x \
116 -n icache.h -hc tmp-icache.h \
117 -n icache.c -c tmp-icache.c \
118 -n semantics.h -hs tmp-semantics.h \
119 -n semantics.c -s tmp-semantics.c \
120 -n idecode.h -hd tmp-idecode.h \
121 -n idecode.c -d tmp-idecode.c \
122 -n model.h -hm tmp-model.h \
123 -n model.c -m tmp-model.c \
124 -n support.h -hf tmp-support.h \
125 -n support.c -f tmp-support.c \
126 -n itable.h -ht tmp-itable.h \
127 -n itable.c -t tmp-itable.c \
128 -n engine.h -he tmp-engine.h \
129 -n engine.c -e tmp-engine.c \
130 -n irun.c -r tmp-irun.c
131 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
132 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
133 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
134 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
135 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
136 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
137 $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
138 $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
139 $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
140 $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
141 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
142 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
143 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
144 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
145 $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
146 touch tmp-igen
147
148
149interp.o: interp.c $(MN10300_INTERP_DEP) $(INCLUDE)
d4424ada 150simops.o: simops.c simops.h $(INCLUDE)
c906108c
SS
151table.o: table.c
152
153clean-extra: clean-igen
154 rm -f table.c simops.h gencode