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

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [gdb-5.0/] [sim/] [testsuite/] [d10v-elf/] [Makefile.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
# Makefile for regression testing the GNU debugger.
2
# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3
 
4
# This file is part of GDB.
5
 
6
# GDB 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, or (at your option)
9
# any later version.
10
 
11
# GDB 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
VPATH = @srcdir@
21
srcdir = @srcdir@
22
srcroot = $(srcdir)/..
23
 
24
prefix = @prefix@
25
exec_prefix = @exec_prefix@
26
 
27
host_alias = @host_alias@
28
target_alias = @target_alias@
29
program_transform_name = @program_transform_name@
30
build_canonical = @build@
31
host_canonical = @host@
32
target_canonical = @target@
33
target_cpu = @target_cpu@
34
 
35
 
36
SHELL = /bin/sh
37
SUBDIRS = @subdirs@
38
RPATH_ENVVAR = @RPATH_ENVVAR@
39
 
40
TESTS = \
41
        exit47.ko \
42
        hello.hi \
43
        t-dbt.ok \
44
        t-ld-st.ok \
45
        t-mac.ok \
46
        t-mvtac.ok \
47
        t-mvtc.ok \
48
        t-msbu.ok \
49
        t-mulxu.ok \
50
        t-rac.ok \
51
        t-rachi.ok \
52
        t-rdt.ok \
53
        t-rep.ok \
54
        t-rte.ok \
55
        t-sac.ok \
56
        t-sachi.ok \
57
        t-sadd.ok \
58
        t-slae.ok \
59
        t-sp.ok \
60
        t-sub2w.ok \
61
        t-sub.ok \
62
        t-subi.ok \
63
        t-ae-ld-d.ok \
64
        t-ae-ld-i.ok \
65
        t-ae-ld-id.ok \
66
        t-ae-ld-im.ok \
67
        t-ae-ld-ip.ok \
68
        t-ae-ld2w-d.ok \
69
        t-ae-ld2w-i.ok \
70
        t-ae-ld2w-id.ok \
71
        t-ae-ld2w-im.ok \
72
        t-ae-ld2w-ip.ok \
73
        t-ae-st-d.ok \
74
        t-ae-st-i.ok \
75
        t-ae-st-id.ok \
76
        t-ae-st-im.ok \
77
        t-ae-st-ip.ok \
78
        t-ae-st-is.ok \
79
        t-ae-st2w-d.ok \
80
        t-ae-st2w-i.ok \
81
        t-ae-st2w-id.ok \
82
        t-ae-st2w-im.ok \
83
        t-ae-st2w-ip.ok \
84
        t-ae-st2w-is.ok \
85
        t-mod-ld-pre.ok \
86
#
87
 
88
AS_FOR_TARGET = `\
89
  if [ -x ../../../gas/as-new ]; then \
90
    echo ../../../gas/as-new ; \
91
  else \
92
    echo $(target_alias)-as ; \
93
  fi`
94
 
95
LD_FOR_TARGET = `\
96
  if [ -x ../../../ld/ld-new ]; then \
97
    echo ../../../ld/ld-new ; \
98
  else \
99
    echo $(target_alias)-ld ; \
100
  fi`
101
 
102
RUN_FOR_TARGET = `\
103
  if [ -x ../../../sim/d10v/run ]; then \
104
    echo ../../../sim/d10v/run ; \
105
  else \
106
    echo $(target_alias)-run ; \
107
  fi`
108
 
109
# Force d10v into operating mode.
110
RUNFLAGS_FOR_TARGET=-o
111
 
112
 
113
check: sanity $(TESTS)
114
sanity:
115
        @eval echo AS_FOR_TARGET=$(AS_FOR_TARGET)
116
        @eval echo LD_FOR_TARGET=$(LD_FOR_TARGET)
117
        @eval echo RUN_FOR_TARGET=$(RUN_FOR_TARGET)
118
 
119
clean:
120
        rm -f $(TESTS)
121
        rm -f *.run *.o
122
        rm -f core *.core
123
 
124
# Rules for running the tests
125
 
126
.SUFFIXES: .ok .run .hi .ko .ti
127
.run.ok:
128
        rm -f tmp-$* $*.hi
129
        ulimit -t 5 ; \
130
        $(RUN_FOR_TARGET) $(RUNFLAGS_FOR_TARGET) $*.run > tmp-$*
131
        mv tmp-$* $*.ok
132
.run.hi:
133
        rm -f tmp-$* $*.hi diff-$*
134
        ulimit -t 5 ; \
135
        $(RUN_FOR_TARGET) $(RUNFLAGS_FOR_TARGET) $*.run > tmp-$*
136
        echo 'Hello World!' | diff - tmp-$* > diff-$*
137
        cat tmp-$* diff-$* > $*.hi
138
.run.ko:
139
        rm -f tmp-$* $*.ko
140
        set +e ; \
141
        ulimit -t 5 ; \
142
        $(RUN_FOR_TARGET) $(RUNFLAGS_FOR_TARGET) $*.run > tmp-$* ; \
143
        if [ $$? -eq 47 ] ; then \
144
          exit 0 ; \
145
        else \
146
          exit 1 ; \
147
        fi
148
        mv tmp-$* $*.ko
149
.run.ti:
150
        rm -f tmp-$* $*.ti
151
        set +e ; \
152
        ulimit -t 5 ; \
153
        $(RUN_FOR_TARGET) $(RUNFLAGS_FOR_TARGET) $(INTFLAGS_FOR_TARGET) $*.run > tmp-$*
154
        test `cat tmp-$* | wc -l` -eq 10 < /dev/null
155
        test `grep Tick tmp-$* | wc -l` -eq 10 < /dev/null
156
        mv tmp-$* $*.ti
157
 
158
 
159
# Rules for building the test
160
# Preference is for obtaining the executable (.run) from a prebuilt image
161
 
162
.SUFFIXES: .uue .s .S .run
163
.uue.run:
164
        head $* | grep $*.run > /dev/null
165
        uudecode $*.uue
166
.run.u:
167
        uuencode < $*.run $*.run > $*.u
168
.o.run:
169
        $(LD_FOR_TARGET) $(LDFLAGS_FOR_TARGET) -o $*.run $*.o
170
.s.o:
171
        $(AS_FOR_TARGET) $(ASFLAGS_FOR_TARGET) -I$(srcdir) $(srcdir)/$*.s -o $*.o
172
.S.o:
173
        $(AS_FOR_TARGET) $(ASFLAGS_FOR_TARGET) -I$(srcdir) $(srcdir)/$*.S -o $*.o
174
 
175
 
176
Makefile: Makefile.in config.status
177
        $(SHELL) ./config.status
178
 
179
config.status: configure
180
        $(SHELL) ./config.status --recheck

powered by: WebSVN 2.1.0

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