OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [sim/] [mn10300/] [Makefile.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
#    Makefile template for Configure for the mn10300 sim library.
2
#    Copyright (C) 1996, 1997, 2000, 2001 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
 
21
WITHOUT_COMMON_OBJS = table.o simops.o sim-load.o
22
WITHOUT_COMMON_INTERP_DEP = table.c
23
WITH_COMMON_OBJS = \
24
        itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
25
        $(SIM_NEW_COMMON_OBJS) \
26
        op_utils.o \
27
        sim-engine.o \
28
        sim-hload.o \
29
        sim-hrw.o \
30
        sim-resume.o \
31
        sim-reason.o \
32
        sim-stop.o \
33
        dv-sockser.o
34
WITH_COMMON_INTERP_DEP =
35
 
36
MN10300_OBJS = $(@mn10300_common@_COMMON_OBJS)
37
MN10300_INTERP_DEP = $(@mn10300_common@_COMMON_INTERP_DEP)
38
 
39
SIM_OBJS = $(MN10300_OBJS) interp.o
40
 
41
# List of main object files for `run'.
42
WITHOUT_COMMON_RUN_OBJS = run.o
43
WITH_COMMON_RUN_OBJS = nrun.o
44
SIM_RUN_OBJS = $(@mn10300_common@_COMMON_RUN_OBJS)
45
 
46
SIM_EXTRA_CLEAN = clean-extra
47
 
48
# Select mn10300 support in nltvals.def.
49
NL_TARGET = -DNL_TARGET_mn10300
50
 
51
INCLUDE = mn10300_sim.h $(srcdir)/../../include/callback.h
52
 
53
# List of extra flags to always pass to $(CC).
54
SIM_EXTRA_CFLAGS = @sim_gen@ -DPOLL_QUIT_INTERVAL=0x20
55
 
56
## COMMON_POST_CONFIG_FRAG
57
 
58
 
59
#
60
# Old generator (default)
61
#
62
 
63
simops.h: gencode
64
        ./gencode -h >$@
65
 
66
table.c: gencode simops.h
67
        ./gencode >$@
68
 
69
gencode.o: gencode.c $(INCLUDE)
70
        $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
71
 
72
m10300-opc.o: $(srcdir)/../../opcodes/m10300-opc.c
73
        $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/m10300-opc.c
74
 
75
gencode: gencode.o m10300-opc.o
76
        $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o m10300-opc.o $(BUILD_LIB)
77
 
78
idecode.o op_utils.o semantics.o simops.o: targ-vals.h
79
 
80
 
81
BUILT_SRC_FROM_IGEN = \
82
        icache.h \
83
        icache.c \
84
        idecode.h \
85
        idecode.c \
86
        semantics.h \
87
        semantics.c \
88
        model.h \
89
        model.c \
90
        support.h \
91
        support.c \
92
        itable.h \
93
        itable.c \
94
        engine.h \
95
        engine.c \
96
        irun.c
97
$(BUILT_SRC_FROM_IGEN): tmp-igen
98
 
99
 
100
.PHONY: clean-igen
101
clean-igen:
102
        rm -f $(BUILT_SRC_FROM_IGEN)
103
        rm -f tmp-igen tmp-insns
104
 
105
../igen/igen:
106
        cd ../igen && $(MAKE)
107
 
108
IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
109
IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen
110
IGEN_DC=$(srcdir)/mn10300.dc
111
tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
112
        cd ../igen && $(MAKE)
113
        ../igen/igen \
114
                $(IGEN_TRACE) \
115
                -G gen-direct-access \
116
                -M mn10300,am33 -G gen-multi-sim=am33 \
117
                -I $(srcdir) \
118
                -i $(IGEN_INSN) \
119
                -o $(IGEN_DC) \
120
                -x \
121
                -n icache.h    -hc tmp-icache.h \
122
                -n icache.c    -c  tmp-icache.c \
123
                -n semantics.h -hs tmp-semantics.h \
124
                -n semantics.c -s  tmp-semantics.c \
125
                -n idecode.h   -hd tmp-idecode.h \
126
                -n idecode.c   -d  tmp-idecode.c \
127
                -n model.h     -hm tmp-model.h \
128
                -n model.c     -m  tmp-model.c \
129
                -n support.h   -hf tmp-support.h \
130
                -n support.c   -f  tmp-support.c \
131
                -n itable.h    -ht tmp-itable.h \
132
                -n itable.c    -t  tmp-itable.c \
133
                -n engine.h    -he tmp-engine.h \
134
                -n engine.c    -e  tmp-engine.c \
135
                -n irun.c      -r  tmp-irun.c
136
        $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
137
        $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
138
        $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
139
        $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
140
        $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
141
        $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
142
        $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
143
        $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
144
        $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
145
        $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
146
        $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
147
        $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
148
        $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
149
        $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
150
        $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
151
        touch tmp-igen
152
 
153
 
154
interp.o: interp.c $(MN10300_INTERP_DEP) $(INCLUDE)
155
simops.o: simops.c simops.h $(INCLUDE)
156
table.o: table.c
157
 
158
clean-extra: clean-igen
159
        rm -f table.c simops.h gencode

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.