]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/v850/Makefile.in
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[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 21SIM_OBJS = \
a6a5d349 22 $(SIM_NEW_COMMON_OBJS) \
5d37a07b
AC
23 simops.o interp.o \
24 itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
9cdd2c6d 25 sim-engine.o \
9cdd2c6d 26 sim-hload.o \
da3a66e5 27 sim-hrw.o \
5d37a07b
AC
28 sim-resume.o \
29 sim-reason.o \
a6a5d349
AC
30 sim-stop.o
31
9cdd2c6d
AC
32SIM_RUN_OBJS = nrun.o
33
5d37a07b
AC
34# List of extra dependencies.
35# Generally this consists of simulator specific files included by sim-main.h.
93e7a1b5 36SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h itable.h
5d37a07b 37
9cdd2c6d 38# List of flags to always pass to $(CC)
5d37a07b
AC
39SIM_EXTRA_CFLAGS = \
40 -DDEBUG \
a6a5d349 41 -I$(srcdir)/../../newlib/libc/sys/sysnecv850
295dbbe4 42SIM_EXTRA_CLEAN = clean-extra
22c1c7dd 43
a6a5d349 44INCLUDE = $(sim_main_headers) $(SIM_EXTRA_DEPS)
22c1c7dd 45
9cdd2c6d 46## COMMON_POST_CONFIG_FRAG
22c1c7dd 47
5d37a07b 48simops.h table.c: tmp-gencode
93e7a1b5 49tmp-gencode: gencode
5d37a07b
AC
50 ./gencode >tmp-table.c
51 mv tmp-table.c table.c
52 ./gencode -h >tmp-simops.h
53 mv tmp-simops.h simops.h
54 touch tmp-gencode
93e7a1b5 55gencode.o: gencode.c
295dbbe4 56 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
295dbbe4
SG
57v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c
58 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $<
295dbbe4
SG
59gencode: gencode.o v850-opc.o
60 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o v850-opc.o
22c1c7dd 61
5d37a07b
AC
62
63
64BUILT_SRC_FROM_IGEN = \
65 icache.h \
66 icache.c \
67 idecode.h \
68 idecode.c \
69 semantics.h \
70 semantics.c \
71 model.h \
72 model.c \
73 support.h \
74 support.c \
75 itable.h \
76 itable.c \
77 engine.h \
78 engine.c \
79 irun.c
80$(BUILT_SRC_FROM_IGEN): tmp-igen simops.h
81#
82
83.PHONY: clean-igen
84clean-igen:
85 rm -f $(BUILT_SRC_FROM_IGEN)
86 rm -f tmp-igen tmp-insns
87
88../igen/igen:
89 cd ../igen && $(MAKE)
90
fb1fd475 91IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
5d37a07b
AC
92IGEN_INSN=$(srcdir)/v850.igen
93IGEN_DC=$(srcdir)/v850-dc
94tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
95 cd ../igen && $(MAKE)
96 ../igen/igen \
721478d5 97 $(IGEN_TRACE) \
5d37a07b
AC
98 -G gen-direct-access \
99 -i $(IGEN_INSN) \
100 -o $(IGEN_DC) \
101 -x \
102 -n icache.h -hc tmp-icache.h \
103 -n icache.c -c tmp-icache.c \
104 -n semantics.h -hs tmp-semantics.h \
105 -n semantics.c -s tmp-semantics.c \
106 -n idecode.h -hd tmp-idecode.h \
107 -n idecode.c -d tmp-idecode.c \
108 -n model.h -hm tmp-model.h \
109 -n model.c -m tmp-model.c \
110 -n support.h -hf tmp-support.h \
111 -n support.c -f tmp-support.c \
112 -n itable.h -ht tmp-itable.h \
113 -n itable.c -t tmp-itable.c \
114 -n engine.h -he tmp-engine.h \
115 -n engine.c -e tmp-engine.c \
116 -n irun.c -r tmp-irun.c
117 $(srcdir)/../../move-if-change tmp-icache.h icache.h
118 $(srcdir)/../../move-if-change tmp-icache.c icache.c
119 $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
120 $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
121 $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
122 $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
123 $(srcdir)/../../move-if-change tmp-model.h model.h
124 $(srcdir)/../../move-if-change tmp-model.c model.c
125 $(srcdir)/../../move-if-change tmp-support.h support.h
126 $(srcdir)/../../move-if-change tmp-support.c support.c
127 $(srcdir)/../../move-if-change tmp-itable.h itable.h
128 $(srcdir)/../../move-if-change tmp-itable.c itable.c
129 $(srcdir)/../../move-if-change tmp-engine.h engine.h
130 $(srcdir)/../../move-if-change tmp-engine.c engine.c
131 $(srcdir)/../../move-if-change tmp-irun.c irun.c
132 touch tmp-igen
133
134clean-extra: clean-igen
295dbbe4 135 rm -f table.c simops.h gencode
22c1c7dd 136
5d37a07b 137#interp.o: interp.c table.c $(INCLUDE)
a6a5d349 138simops.o: simops.c $(INCLUDE) targ-vals.h
5d37a07b 139#table.o: table.c
4dda50b0 140semantics.o: $(INCLUDE)