Commit | Line | Data |
---|---|---|
c906108c | 1 | # Makefile template for Configure for the mn10300 sim library. |
8acc9f48 | 2 | # Copyright (C) 1996-2013 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 | 20 | MN10300_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 \ | |
24 | sim-engine.o \ | |
25 | sim-hload.o \ | |
26 | sim-hrw.o \ | |
27 | sim-resume.o \ | |
28 | sim-reason.o \ | |
29 | sim-stop.o \ | |
30 | dv-sockser.o | |
c906108c SS |
31 | |
32 | SIM_OBJS = $(MN10300_OBJS) interp.o | |
33 | ||
34 | # List of main object files for `run'. | |
599e0b9e | 35 | SIM_RUN_OBJS = nrun.o |
c906108c | 36 | |
622c89b6 | 37 | SIM_EXTRA_CLEAN = clean-igen |
6c0a25e9 AC |
38 | # Extra dependencies for "sim-main.h" |
39 | SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h | |
c906108c SS |
40 | |
41 | # Select mn10300 support in nltvals.def. | |
42 | NL_TARGET = -DNL_TARGET_mn10300 | |
43 | ||
3c25f8c7 | 44 | INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h |
c906108c SS |
45 | |
46 | # List of extra flags to always pass to $(CC). | |
599e0b9e | 47 | SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20 |
c906108c SS |
48 | |
49 | ## COMMON_POST_CONFIG_FRAG | |
50 | ||
622c89b6 | 51 | idecode.o op_utils.o semantics.o: targ-vals.h |
c906108c SS |
52 | |
53 | BUILT_SRC_FROM_IGEN = \ | |
54 | icache.h \ | |
55 | icache.c \ | |
56 | idecode.h \ | |
57 | idecode.c \ | |
58 | semantics.h \ | |
59 | semantics.c \ | |
60 | model.h \ | |
61 | model.c \ | |
62 | support.h \ | |
63 | support.c \ | |
64 | itable.h \ | |
65 | itable.c \ | |
66 | engine.h \ | |
67 | engine.c \ | |
68 | irun.c | |
69 | $(BUILT_SRC_FROM_IGEN): tmp-igen | |
70 | ||
71 | ||
72 | .PHONY: clean-igen | |
73 | clean-igen: | |
74 | rm -f $(BUILT_SRC_FROM_IGEN) | |
75 | rm -f tmp-igen tmp-insns | |
76 | ||
77 | ../igen/igen: | |
78 | cd ../igen && $(MAKE) | |
79 | ||
80 | IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries | |
c76b4bab | 81 | IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen $(srcdir)/am33-2.igen |
c906108c SS |
82 | IGEN_DC=$(srcdir)/mn10300.dc |
83 | tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen | |
84 | cd ../igen && $(MAKE) | |
85 | ../igen/igen \ | |
86 | $(IGEN_TRACE) \ | |
87 | -G gen-direct-access \ | |
c2d11a7d | 88 | -M mn10300,am33 -G gen-multi-sim=am33 \ |
c76b4bab | 89 | -M am33_2 \ |
c2d11a7d | 90 | -I $(srcdir) \ |
c906108c SS |
91 | -i $(IGEN_INSN) \ |
92 | -o $(IGEN_DC) \ | |
93 | -x \ | |
94 | -n icache.h -hc tmp-icache.h \ | |
95 | -n icache.c -c tmp-icache.c \ | |
96 | -n semantics.h -hs tmp-semantics.h \ | |
97 | -n semantics.c -s tmp-semantics.c \ | |
98 | -n idecode.h -hd tmp-idecode.h \ | |
99 | -n idecode.c -d tmp-idecode.c \ | |
100 | -n model.h -hm tmp-model.h \ | |
101 | -n model.c -m tmp-model.c \ | |
102 | -n support.h -hf tmp-support.h \ | |
103 | -n support.c -f tmp-support.c \ | |
104 | -n itable.h -ht tmp-itable.h \ | |
105 | -n itable.c -t tmp-itable.c \ | |
106 | -n engine.h -he tmp-engine.h \ | |
107 | -n engine.c -e tmp-engine.c \ | |
108 | -n irun.c -r tmp-irun.c | |
109 | $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h | |
110 | $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c | |
111 | $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h | |
112 | $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c | |
113 | $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h | |
114 | $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c | |
115 | $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h | |
116 | $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c | |
117 | $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h | |
118 | $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c | |
119 | $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h | |
120 | $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c | |
121 | $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h | |
122 | $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c | |
123 | $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c | |
124 | touch tmp-igen | |
125 | ||
622c89b6 | 126 | interp.o: interp.c $(INCLUDE) |