1 |
330 |
jeremybenn |
# Makefile template for Configure for the V850 sim library.
|
2 |
|
|
# Copyright (C) 1996, 1997, 2007, 2008, 2009, 2010
|
3 |
|
|
# Free Software Foundation, Inc.
|
4 |
|
|
# Written by Cygnus Support.
|
5 |
|
|
#
|
6 |
|
|
# This program is free software; you can redistribute it and/or modify
|
7 |
|
|
# it under the terms of the GNU General Public License as published by
|
8 |
|
|
# the Free Software Foundation; either version 3 of the License, or
|
9 |
|
|
# (at your option) any later version.
|
10 |
|
|
#
|
11 |
|
|
# This program is distributed in the hope that it will be useful,
|
12 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14 |
|
|
# GNU General Public License for more details.
|
15 |
|
|
#
|
16 |
|
|
# You should have received a copy of the GNU General Public License
|
17 |
|
|
# along with this program. If not, see .
|
18 |
|
|
|
19 |
|
|
SHELL = @SHELL@
|
20 |
|
|
|
21 |
|
|
## COMMON_PRE_CONFIG_FRAG
|
22 |
|
|
|
23 |
|
|
SIM_OBJS = \
|
24 |
|
|
$(SIM_NEW_COMMON_OBJS) \
|
25 |
|
|
simops.o interp.o \
|
26 |
|
|
itable.o semantics.o idecode.o icache.o engine.o irun.o support.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 |
|
|
|
34 |
|
|
SIM_RUN_OBJS = nrun.o
|
35 |
|
|
|
36 |
|
|
# List of extra dependencies.
|
37 |
|
|
# Generally this consists of simulator specific files included by sim-main.h.
|
38 |
|
|
SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h itable.h
|
39 |
|
|
|
40 |
|
|
# List of flags to always pass to $(CC)
|
41 |
|
|
SIM_EXTRA_CFLAGS = \
|
42 |
|
|
-DDEBUG \
|
43 |
|
|
-I$(srcdir)/../../newlib/libc/sys/sysnecv850
|
44 |
|
|
SIM_EXTRA_CLEAN = clean-extra
|
45 |
|
|
|
46 |
|
|
INCLUDE = $(sim_main_headers) $(SIM_EXTRA_DEPS)
|
47 |
|
|
|
48 |
|
|
NL_TARGET = -DNL_TARGET_v850
|
49 |
|
|
|
50 |
|
|
## COMMON_POST_CONFIG_FRAG
|
51 |
|
|
|
52 |
|
|
BUILT_SRC_FROM_IGEN = \
|
53 |
|
|
icache.h \
|
54 |
|
|
icache.c \
|
55 |
|
|
idecode.h \
|
56 |
|
|
idecode.c \
|
57 |
|
|
semantics.h \
|
58 |
|
|
semantics.c \
|
59 |
|
|
model.h \
|
60 |
|
|
model.c \
|
61 |
|
|
support.h \
|
62 |
|
|
support.c \
|
63 |
|
|
itable.h \
|
64 |
|
|
itable.c \
|
65 |
|
|
engine.h \
|
66 |
|
|
engine.c \
|
67 |
|
|
irun.c
|
68 |
|
|
$(BUILT_SRC_FROM_IGEN): tmp-igen
|
69 |
|
|
#
|
70 |
|
|
|
71 |
|
|
.PHONY: clean-igen
|
72 |
|
|
clean-igen:
|
73 |
|
|
rm -f $(BUILT_SRC_FROM_IGEN)
|
74 |
|
|
rm -f tmp-igen tmp-insns
|
75 |
|
|
|
76 |
|
|
../igen/igen:
|
77 |
|
|
cd ../igen && $(MAKE)
|
78 |
|
|
|
79 |
|
|
IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
|
80 |
|
|
IGEN_INSN=$(srcdir)/v850.igen
|
81 |
|
|
IGEN_DC=$(srcdir)/v850-dc
|
82 |
|
|
tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
|
83 |
|
|
cd ../igen && $(MAKE)
|
84 |
|
|
../igen/igen \
|
85 |
|
|
$(IGEN_TRACE) \
|
86 |
|
|
-G gen-direct-access \
|
87 |
|
|
-G gen-zero-r0 \
|
88 |
|
|
-i $(IGEN_INSN) \
|
89 |
|
|
-o $(IGEN_DC) \
|
90 |
|
|
-x \
|
91 |
|
|
-n icache.h -hc tmp-icache.h \
|
92 |
|
|
-n icache.c -c tmp-icache.c \
|
93 |
|
|
-n semantics.h -hs tmp-semantics.h \
|
94 |
|
|
-n semantics.c -s tmp-semantics.c \
|
95 |
|
|
-n idecode.h -hd tmp-idecode.h \
|
96 |
|
|
-n idecode.c -d tmp-idecode.c \
|
97 |
|
|
-n model.h -hm tmp-model.h \
|
98 |
|
|
-n model.c -m tmp-model.c \
|
99 |
|
|
-n support.h -hf tmp-support.h \
|
100 |
|
|
-n support.c -f tmp-support.c \
|
101 |
|
|
-n itable.h -ht tmp-itable.h \
|
102 |
|
|
-n itable.c -t tmp-itable.c \
|
103 |
|
|
-n engine.h -he tmp-engine.h \
|
104 |
|
|
-n engine.c -e tmp-engine.c \
|
105 |
|
|
-n irun.c -r tmp-irun.c
|
106 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
|
107 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
|
108 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
|
109 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
|
110 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
|
111 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
|
112 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
|
113 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
|
114 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
|
115 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
|
116 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
|
117 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
|
118 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
|
119 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
|
120 |
|
|
$(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
|
121 |
|
|
touch tmp-igen
|
122 |
|
|
|
123 |
|
|
clean-extra: clean-igen
|
124 |
|
|
rm -f table.c simops.h gencode
|
125 |
|
|
|
126 |
|
|
interp.o: interp.c $(INCLUDE)
|
127 |
|
|
simops.o: simops.c simops.h $(INCLUDE) targ-vals.h
|
128 |
|
|
semantics.o: $(INCLUDE)
|