* configure.in: Use common simulator always. Don't subst sim_gen
[external/binutils.git] / sim / mn10300 / Makefile.in
1 #    Makefile template for Configure for the mn10300 sim library.
2 #    Copyright (C) 1996, 1997, 2000, 2001, 2004 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 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
21 MN10300_OBJS = \
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
32 MN10300_INTERP_DEP = 
33
34 SIM_OBJS = $(MN10300_OBJS) interp.o
35
36 # List of main object files for `run'.
37 SIM_RUN_OBJS = nrun.o
38
39 SIM_EXTRA_CLEAN = clean-extra
40 # Extra dependencies for "sim-main.h"
41 SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
42
43 # Select mn10300 support in nltvals.def.
44 NL_TARGET = -DNL_TARGET_mn10300
45
46 INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h
47
48 # List of extra flags to always pass to $(CC).
49 SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
50
51 ## COMMON_POST_CONFIG_FRAG
52
53
54 #
55 # Old generator (default)
56 #
57
58 simops.h: gencode
59         ./gencode -h >$@
60
61 table.c: gencode simops.h
62         ./gencode >$@
63
64 gencode.o: gencode.c $(INCLUDE)
65         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
66
67 m10300-opc.o: $(srcdir)/../../opcodes/m10300-opc.c
68         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/m10300-opc.c
69
70 gencode: gencode.o m10300-opc.o
71         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o m10300-opc.o $(BUILD_LIB)
72
73 idecode.o op_utils.o semantics.o simops.o: targ-vals.h
74
75
76 BUILT_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
96 clean-igen:
97         rm -f $(BUILT_SRC_FROM_IGEN)
98         rm -f tmp-igen tmp-insns
99
100 ../igen/igen:
101         cd ../igen && $(MAKE)
102
103 IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
104 IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen
105 IGEN_DC=$(srcdir)/mn10300.dc
106 tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
107         cd ../igen && $(MAKE)
108         ../igen/igen \
109                 $(IGEN_TRACE) \
110                 -G gen-direct-access \
111                 -M mn10300,am33 -G gen-multi-sim=am33 \
112                 -I $(srcdir) \
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
149 interp.o: interp.c $(MN10300_INTERP_DEP) $(INCLUDE)
150 simops.o: simops.c simops.h $(INCLUDE)
151 table.o: table.c
152
153 clean-extra: clean-igen
154         rm -f table.c simops.h gencode