This commit was generated by cvs2svn to track changes on a CVS vendor
[external/binutils.git] / sim / mn10300 / Makefile.in
1 #    Makefile template for Configure for the mn10300 sim library.
2 #    Copyright (C) 1996, 1997 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 WITHOUT_COMMON_OBJS = table.o simops.o sim-load.o
22 WITHOUT_COMMON_INTERP_DEP = table.c
23 WITH_COMMON_OBJS = \
24         itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
25         $(SIM_NEW_COMMON_OBJS) \
26         op_utils.o \
27         sim-engine.o \
28         sim-hload.o \
29         sim-hrw.o \
30         sim-resume.o \
31         sim-reason.o \
32         sim-stop.o
33 WITH_COMMON_INTERP_DEP = 
34
35 MN10300_OBJS = $(@mn10300_common@_COMMON_OBJS)
36 MN10300_INTERP_DEP = $(@mn10300_common@_COMMON_INTERP_DEP)
37
38 SIM_OBJS = $(MN10300_OBJS) interp.o
39
40 # List of main object files for `run'.
41 WITHOUT_COMMON_RUN_OBJS = run.o
42 WITH_COMMON_RUN_OBJS = nrun.o
43 SIM_RUN_OBJS = $(@mn10300_common@_COMMON_RUN_OBJS)
44
45 SIM_EXTRA_CLEAN = clean-extra
46
47 # Select mn10300 support in nltvals.def.
48 NL_TARGET = -DNL_TARGET_mn10300
49
50 INCLUDE = mn10300_sim.h $(srcdir)/../../include/callback.h
51
52 # List of extra flags to always pass to $(CC).
53 SIM_EXTRA_CFLAGS = @sim_gen@
54
55 ## COMMON_POST_CONFIG_FRAG
56
57
58 #
59 # Old generator (default)
60 #
61
62 simops.h: gencode
63         ./gencode -h >$@
64
65 table.c: gencode simops.h
66         ./gencode >$@
67
68 gencode.o: gencode.c $(INCLUDE)
69         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
70
71 m10300-opc.o: $(srcdir)/../../opcodes/m10300-opc.c
72         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/m10300-opc.c
73
74 gencode: gencode.o m10300-opc.o
75         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o m10300-opc.o $(BUILD_LIB)
76
77
78
79
80 BUILT_SRC_FROM_IGEN = \
81         icache.h \
82         icache.c \
83         idecode.h \
84         idecode.c \
85         semantics.h \
86         semantics.c \
87         model.h \
88         model.c \
89         support.h \
90         support.c \
91         itable.h \
92         itable.c \
93         engine.h \
94         engine.c \
95         irun.c
96 $(BUILT_SRC_FROM_IGEN): tmp-igen
97
98
99 .PHONY: clean-igen
100 clean-igen:
101         rm -f $(BUILT_SRC_FROM_IGEN)
102         rm -f tmp-igen tmp-insns
103
104 ../igen/igen:
105         cd ../igen && $(MAKE)
106
107 IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
108 IGEN_INSN=$(srcdir)/mn10300.igen
109 IGEN_DC=$(srcdir)/mn10300.dc
110 tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
111         cd ../igen && $(MAKE)
112         ../igen/igen \
113                 $(IGEN_TRACE) \
114                 -G gen-direct-access \
115                 -i $(IGEN_INSN) \
116                 -o $(IGEN_DC) \
117                 -x \
118                 -n icache.h    -hc tmp-icache.h \
119                 -n icache.c    -c  tmp-icache.c \
120                 -n semantics.h -hs tmp-semantics.h \
121                 -n semantics.c -s  tmp-semantics.c \
122                 -n idecode.h   -hd tmp-idecode.h \
123                 -n idecode.c   -d  tmp-idecode.c \
124                 -n model.h     -hm tmp-model.h \
125                 -n model.c     -m  tmp-model.c \
126                 -n support.h   -hf tmp-support.h \
127                 -n support.c   -f  tmp-support.c \
128                 -n itable.h    -ht tmp-itable.h \
129                 -n itable.c    -t  tmp-itable.c \
130                 -n engine.h    -he tmp-engine.h \
131                 -n engine.c    -e  tmp-engine.c \
132                 -n irun.c      -r  tmp-irun.c
133         $(srcdir)/../../move-if-change tmp-icache.h icache.h
134         $(srcdir)/../../move-if-change tmp-icache.c icache.c
135         $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
136         $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
137         $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
138         $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
139         $(srcdir)/../../move-if-change tmp-model.h model.h
140         $(srcdir)/../../move-if-change tmp-model.c model.c
141         $(srcdir)/../../move-if-change tmp-support.h support.h
142         $(srcdir)/../../move-if-change tmp-support.c support.c
143         $(srcdir)/../../move-if-change tmp-itable.h itable.h
144         $(srcdir)/../../move-if-change tmp-itable.c itable.c
145         $(srcdir)/../../move-if-change tmp-engine.h engine.h
146         $(srcdir)/../../move-if-change tmp-engine.c engine.c
147         $(srcdir)/../../move-if-change tmp-irun.c irun.c
148         touch tmp-igen
149
150
151 interp.o: interp.c $(MN10300_INTERP_DEP) $(INCLUDE)
152 simops.o: simops.c $(INCLUDE)
153 table.o: table.c
154
155 clean-extra: clean-igen
156         rm -f table.c simops.h gencode