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