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

Subversion Repositories or1k

[/] [or1k/] [tags/] [final_interface/] [gdb-5.0/] [sim/] [v850/] [Makefile.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

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