]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/v850/Makefile.in
Short form of sample-size option had wrong value.
[thirdparty/binutils-gdb.git] / sim / v850 / Makefile.in
CommitLineData
22c1c7dd 1# Makefile template for Configure for the V850 sim library.
9cdd2c6d 2# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
22c1c7dd
JL
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
9cdd2c6d
AC
19## COMMON_PRE_CONFIG_FRAG
20
5d37a07b
AC
21SIM_OBJS = \
22 simops.o interp.o \
23 itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
24 sim-bits.o \
9cdd2c6d
AC
25 sim-config.o \
26 sim-core.o \
27 sim-engine.o \
28 sim-endian.o \
29 sim-events.o \
30 sim-hload.o \
da3a66e5 31 sim-hrw.o \
9cdd2c6d
AC
32 sim-io.o \
33 sim-load.o \
da3a66e5 34 sim-memopt.o \
9cdd2c6d
AC
35 sim-module.o \
36 sim-options.o \
37 sim-profile.o \
5d37a07b
AC
38 sim-resume.o \
39 sim-reason.o \
40 sim-stop.o \
9cdd2c6d 41 sim-trace.o \
5d37a07b 42 sim-watch.o \
9cdd2c6d
AC
43 sim-utils.o
44SIM_RUN_OBJS = nrun.o
45
5d37a07b
AC
46# List of extra dependencies.
47# Generally this consists of simulator specific files included by sim-main.h.
48SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h
49
9cdd2c6d
AC
50# List of flags to always pass to $(CC)
51SIM_WARNINGS=@sim_warnings@
52SIM_ENDIAN=@sim_endian@
53SIM_HOSTENDIAN=@sim_hostendian@
5d37a07b
AC
54SIM_EXTRA_CFLAGS = \
55 -DDEBUG \
56 -I$(srcdir)/../../newlib/libc/sys/sysnecv850 \
9cdd2c6d
AC
57 $(SIM_WARNINGS) \
58 $(SIM_ENDIAN) \
59 $(SIM_HOSTENDIAN)
295dbbe4 60SIM_EXTRA_CLEAN = clean-extra
22c1c7dd 61
5d37a07b 62INCLUDE = simops.h v850_sim.h sim-main.h $(srcdir)/../../include/callback.h
22c1c7dd 63
9cdd2c6d 64## COMMON_POST_CONFIG_FRAG
22c1c7dd 65
5d37a07b
AC
66simops.h table.c: tmp-gencode
67tmp-gencode: gencode simops.h
68 ./gencode >tmp-table.c
69 mv tmp-table.c table.c
70 ./gencode -h >tmp-simops.h
71 mv tmp-simops.h simops.h
72 touch tmp-gencode
295dbbe4
SG
73gencode.o: gencode.c $(INCLUDE)
74 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
295dbbe4
SG
75v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c
76 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $<
295dbbe4
SG
77gencode: gencode.o v850-opc.o
78 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o v850-opc.o
22c1c7dd 79
5d37a07b
AC
80
81
82BUILT_SRC_FROM_IGEN = \
83 icache.h \
84 icache.c \
85 idecode.h \
86 idecode.c \
87 semantics.h \
88 semantics.c \
89 model.h \
90 model.c \
91 support.h \
92 support.c \
93 itable.h \
94 itable.c \
95 engine.h \
96 engine.c \
97 irun.c
98$(BUILT_SRC_FROM_IGEN): tmp-igen simops.h
99#
100
101.PHONY: clean-igen
102clean-igen:
103 rm -f $(BUILT_SRC_FROM_IGEN)
104 rm -f tmp-igen tmp-insns
105
106../igen/igen:
107 cd ../igen && $(MAKE)
108
109IGEN_INSN=$(srcdir)/v850.igen
110IGEN_DC=$(srcdir)/v850-dc
111tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
112 cd ../igen && $(MAKE)
113 ../igen/igen \
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
150clean-extra: clean-igen
295dbbe4 151 rm -f table.c simops.h gencode
22c1c7dd 152
5d37a07b
AC
153#interp.o: interp.c table.c $(INCLUDE)
154simops.o: simops.c simops.h
155#table.o: table.c