Commit | Line | Data |
---|---|---|
c906108c | 1 | # Makefile template for Configure for the V850 sim library. |
61baf725 | 2 | # Copyright (C) 1996-2017 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 | 17 | |
ae451ac6 ILT |
18 | SHELL = @SHELL@ |
19 | ||
c906108c SS |
20 | ## COMMON_PRE_CONFIG_FRAG |
21 | ||
22 | SIM_OBJS = \ | |
23 | $(SIM_NEW_COMMON_OBJS) \ | |
24 | simops.o interp.o \ | |
25 | itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \ | |
797eee42 | 26 | sim-resume.o |
c906108c | 27 | |
c906108c SS |
28 | # List of extra dependencies. |
29 | # Generally this consists of simulator specific files included by sim-main.h. | |
30 | SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h itable.h | |
31 | ||
32 | # List of flags to always pass to $(CC) | |
33 | SIM_EXTRA_CFLAGS = \ | |
34 | -DDEBUG \ | |
35 | -I$(srcdir)/../../newlib/libc/sys/sysnecv850 | |
36 | SIM_EXTRA_CLEAN = clean-extra | |
37 | ||
38 | INCLUDE = $(sim_main_headers) $(SIM_EXTRA_DEPS) | |
39 | ||
40 | NL_TARGET = -DNL_TARGET_v850 | |
41 | ||
42 | ## COMMON_POST_CONFIG_FRAG | |
43 | ||
c906108c SS |
44 | BUILT_SRC_FROM_IGEN = \ |
45 | icache.h \ | |
46 | icache.c \ | |
47 | idecode.h \ | |
48 | idecode.c \ | |
49 | semantics.h \ | |
50 | semantics.c \ | |
51 | model.h \ | |
52 | model.c \ | |
53 | support.h \ | |
54 | support.c \ | |
55 | itable.h \ | |
56 | itable.c \ | |
57 | engine.h \ | |
58 | engine.c \ | |
59 | irun.c | |
7ef2d4e7 | 60 | $(BUILT_SRC_FROM_IGEN): tmp-igen |
c906108c SS |
61 | # |
62 | ||
63 | .PHONY: clean-igen | |
64 | clean-igen: | |
65 | rm -f $(BUILT_SRC_FROM_IGEN) | |
66 | rm -f tmp-igen tmp-insns | |
67 | ||
68 | ../igen/igen: | |
69 | cd ../igen && $(MAKE) | |
70 | ||
71 | IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries | |
72 | IGEN_INSN=$(srcdir)/v850.igen | |
73 | IGEN_DC=$(srcdir)/v850-dc | |
74 | tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen | |
75 | cd ../igen && $(MAKE) | |
76 | ../igen/igen \ | |
77 | $(IGEN_TRACE) \ | |
78 | -G gen-direct-access \ | |
e551c257 | 79 | -G gen-zero-r0 \ |
c906108c SS |
80 | -i $(IGEN_INSN) \ |
81 | -o $(IGEN_DC) \ | |
82 | -x \ | |
83 | -n icache.h -hc tmp-icache.h \ | |
84 | -n icache.c -c tmp-icache.c \ | |
85 | -n semantics.h -hs tmp-semantics.h \ | |
86 | -n semantics.c -s tmp-semantics.c \ | |
87 | -n idecode.h -hd tmp-idecode.h \ | |
88 | -n idecode.c -d tmp-idecode.c \ | |
89 | -n model.h -hm tmp-model.h \ | |
90 | -n model.c -m tmp-model.c \ | |
91 | -n support.h -hf tmp-support.h \ | |
92 | -n support.c -f tmp-support.c \ | |
93 | -n itable.h -ht tmp-itable.h \ | |
94 | -n itable.c -t tmp-itable.c \ | |
95 | -n engine.h -he tmp-engine.h \ | |
96 | -n engine.c -e tmp-engine.c \ | |
97 | -n irun.c -r tmp-irun.c | |
ae451ac6 ILT |
98 | $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h |
99 | $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c | |
100 | $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h | |
101 | $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c | |
102 | $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h | |
103 | $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c | |
104 | $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h | |
105 | $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c | |
106 | $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h | |
107 | $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c | |
108 | $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h | |
109 | $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c | |
110 | $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h | |
111 | $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c | |
112 | $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c | |
c906108c SS |
113 | touch tmp-igen |
114 | ||
115 | clean-extra: clean-igen | |
116 | rm -f table.c simops.h gencode | |
117 | ||
cb5c8c39 | 118 | interp.o: interp.c $(INCLUDE) |
d4424ada | 119 | simops.o: simops.c simops.h $(INCLUDE) targ-vals.h |
c906108c | 120 | semantics.o: $(INCLUDE) |