Copyright updates for 2007.
[platform/upstream/binutils.git] / sim / mn10300 / Makefile.in
1 #    Makefile template for Configure for the mn10300 sim library.
2 #    Copyright (C) 1996, 1997, 2000, 2001, 2004, 2007
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 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
22 MN10300_OBJS = \
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
33
34 SIM_OBJS = $(MN10300_OBJS) interp.o
35
36 # List of main object files for `run'.
37 SIM_RUN_OBJS = nrun.o
38
39 SIM_EXTRA_CLEAN = clean-igen
40 # Extra dependencies for "sim-main.h"
41 SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
42
43 # Select mn10300 support in nltvals.def.
44 NL_TARGET = -DNL_TARGET_mn10300
45
46 INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h
47
48 # List of extra flags to always pass to $(CC).
49 SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
50
51 ## COMMON_POST_CONFIG_FRAG
52
53 idecode.o op_utils.o semantics.o: targ-vals.h
54
55 BUILT_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
75 clean-igen:
76         rm -f $(BUILT_SRC_FROM_IGEN)
77         rm -f tmp-igen tmp-insns
78
79 ../igen/igen:
80         cd ../igen && $(MAKE)
81
82 IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
83 IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen $(srcdir)/am33-2.igen
84 IGEN_DC=$(srcdir)/mn10300.dc
85 tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
86         cd ../igen && $(MAKE)
87         ../igen/igen \
88                 $(IGEN_TRACE) \
89                 -G gen-direct-access \
90                 -M mn10300,am33 -G gen-multi-sim=am33 \
91                 -M am33_2 \
92                 -I $(srcdir) \
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
128 interp.o: interp.c $(INCLUDE)