~ubuntu-branches/ubuntu/warty/dejagnu/warty

« back to all changes in this revision

Viewing changes to site.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2004-02-09 15:07:58 UTC
  • Revision ID: james.westby@ubuntu.com-20040209150758-oaj7r5zrop60v8sb
Tags: upstream-1.4.4
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# site.tmpl -- Sample template for a global config file.
 
3
#           NOTE: This file contains mostly site specific
 
4
#                 configuration data that is custom to Cygnus
 
5
#                 Support. You'll have to change most of the
 
6
#                 values to work at your site.
 
7
#           Written by manson@cygnus.com
 
8
#
 
9
 
 
10
#
 
11
# transform -- transform a tool name to get the installed name. We only define
 
12
#              this if there wasn't one. This was the global config file can
 
13
#              override how the tool names are calculated.
 
14
#
 
15
 
 
16
#
 
17
# uncomment this if you wish to redefine the transform procedure
 
18
#
 
19
 
 
20
#if ![string match "transform" [info procs transform]] then {
 
21
#        proc transform { name } {
 
22
#       global target_triplet
 
23
#       
 
24
#       if [string match "" $target_triplet] then {
 
25
#           return $name
 
26
#       } else {
 
27
#           return ${target_triplet}-$name
 
28
#       }
 
29
#    }
 
30
#}
 
31
 
 
32
#
 
33
# Set a default target list for various target triplets.
 
34
#
 
35
case "$target_triplet" in {
 
36
    { "hppa*-*-proelf*" } {
 
37
        set target_list { winbond }
 
38
    }
 
39
    { "i386-*-aout" } {
 
40
        set target_list { i386-aout }
 
41
    }
 
42
    { "m68k-mvme135-*" } {     # Motorola MVME135 board running Bug monitor
 
43
        set target_list  { "mvme135-bug" }
 
44
     }
 
45
    { "m68k-idp-*" "m68k-rom68k-*" } {      # Motorola IDP board running rom68k monitor
 
46
        set target_list "bozo"
 
47
     }
 
48
}