]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/mn10300/Makefile.in
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / sim / mn10300 / Makefile.in
CommitLineData
c906108c 1# Makefile template for Configure for the mn10300 sim library.
6aba47ca
DJ
2# Copyright (C) 1996, 1997, 2000, 2001, 2004, 2007
3# Free Software Foundation, Inc.
c906108c
SS
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 2 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, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20## COMMON_PRE_CONFIG_FRAG
21
599e0b9e 22MN10300_OBJS = \
c906108c
SS
23 itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
24 $(SIM_NEW_COMMON_OBJS) \
25 op_utils.o \
26 sim-engine.o \
27 sim-hload.o \
28 sim-hrw.o \
29 sim-resume.o \
30 sim-reason.o \
31 sim-stop.o \
32 dv-sockser.o
c906108c
SS
33
34SIM_OBJS = $(MN10300_OBJS) interp.o
35
36# List of main object files for `run'.
599e0b9e 37SIM_RUN_OBJS = nrun.o
c906108c 38
622c89b6 39SIM_EXTRA_CLEAN = clean-igen
6c0a25e9
AC
40# Extra dependencies for "sim-main.h"
41SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
c906108c
SS
42
43# Select mn10300 support in nltvals.def.
44NL_TARGET = -DNL_TARGET_mn10300
45
3c25f8c7 46INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h
c906108c
SS
47
48# List of extra flags to always pass to $(CC).
599e0b9e 49SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
c906108c
SS
50
51## COMMON_POST_CONFIG_FRAG
52
622c89b6 53idecode.o op_utils.o semantics.o: targ-vals.h
c906108c
SS
54
55BUILT_SRC_FROM_IGEN = \
56 icache.h \
57 icache.c \
58 idecode.h \
59 idecode.c \
60 semantics.h \
61 semantics.c \
62 model.h \
63 model.c \
64 support.h \
65 support.c \
66 itable.h \
67 itable.c \
68 engine.h \
69 engine.c \
70 irun.c
71$(BUILT_SRC_FROM_IGEN): tmp-igen
72
73
74.PHONY: clean-igen
75clean-igen:
76 rm -f $(BUILT_SRC_FROM_IGEN)
77 rm -f tmp-igen tmp-insns
78
79../igen/igen:
80 cd ../igen && $(MAKE)
81
82IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
c76b4bab 83IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen $(srcdir)/am33-2.igen
c906108c
SS
84IGEN_DC=$(srcdir)/mn10300.dc
85tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
86 cd ../igen && $(MAKE)
87 ../igen/igen \
88 $(IGEN_TRACE) \
89 -G gen-direct-access \
c2d11a7d 90 -M mn10300,am33 -G gen-multi-sim=am33 \
c76b4bab 91 -M am33_2 \
c2d11a7d 92 -I $(srcdir) \
c906108c
SS
93 -i $(IGEN_INSN) \
94 -o $(IGEN_DC) \
95 -x \
96 -n icache.h -hc tmp-icache.h \
97 -n icache.c -c tmp-icache.c \
98 -n semantics.h -hs tmp-semantics.h \
99 -n semantics.c -s tmp-semantics.c \
100 -n idecode.h -hd tmp-idecode.h \
101 -n idecode.c -d tmp-idecode.c \
102 -n model.h -hm tmp-model.h \
103 -n model.c -m tmp-model.c \
104 -n support.h -hf tmp-support.h \
105 -n support.c -f tmp-support.c \
106 -n itable.h -ht tmp-itable.h \
107 -n itable.c -t tmp-itable.c \
108 -n engine.h -he tmp-engine.h \
109 -n engine.c -e tmp-engine.c \
110 -n irun.c -r tmp-irun.c
111 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
112 $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
113 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
114 $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
115 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
116 $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
117 $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
118 $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
119 $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
120 $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
121 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
122 $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
123 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
124 $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
125 $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
126 touch tmp-igen
127
622c89b6 128interp.o: interp.c $(INCLUDE)