Browse Source

* site.tmpl: Tidy.

origin
Ben Elliston 23 years ago
parent
commit
6612f43d67
  1. 4
      ChangeLog
  2. 60
      site.tmpl

4
ChangeLog

@ -1,3 +1,7 @@
2004-02-06 Ben Elliston <bje@wasabisystems.com>
* site.tmpl: Tidy.
2004-02-06 Ben Elliston <bje@wasabisystems.com>
* INSTALL: Import latest version.

60
site.tmpl

@ -1,37 +1,29 @@
# site.tmpl -- Sample template for a global config file. -*- Tcl -*-
# Written by Bob Manson <manson@cygnus.com>
#
# site.tmpl -- Sample template for a global config file.
# NOTE: This file contains mostly site specific
# configuration data that is custom to Cygnus
# Support. You'll have to change most of the
# values to work at your site.
# Written by manson@cygnus.com
#
#
# transform -- transform a tool name to get the installed name. We only define
# this if there wasn't one. This was the global config file can
# override how the tool names are calculated.
#
# NOTE: This file contains mostly site specific configuration data
# that is custom to Cygnus Support. You'll have to change most of the
# values to work at your site.
#
# uncomment this if you wish to redefine the transform procedure
#
# transform -- transform a tool name to get the installed name. We
# only define this if there wasn't one. This was the global config
# file can override how the tool names are calculated.
#if ![string match "transform" [info procs transform]] then {
# proc transform { name } {
# global target_triplet
#
# if [string match "" $target_triplet] then {
# return $name
# } else {
# return ${target_triplet}-$name
# }
# }
#}
# Uncomment this if you wish to redefine the transform procedure.
#
# if ![string match "transform" [info procs transform]] then {
# proc transform {name} {
# global target_triplet
# if [string match "" $target_triplet] then {
# return $name
# } else {
# return ${target_triplet}-$name
# }
# }
# }
#
# Set a default target list for various target triplets.
#
case "$target_triplet" in {
{ "hppa*-*-proelf*" } {
set target_list { winbond }
@ -39,10 +31,12 @@ case "$target_triplet" in {
{ "i386-*-aout" } {
set target_list { i386-aout }
}
{ "m68k-mvme135-*" } { # Motorola MVME135 board running Bug monitor
{ "m68k-mvme135-*" } {
# Motorola MVME135 board running Bug monitor
set target_list { "mvme135-bug" }
}
{ "m68k-idp-*" "m68k-rom68k-*" } { # Motorola IDP board running rom68k monitor
}
{ "m68k-idp-*" "m68k-rom68k-*" } {
# Motorola IDP board running rom68k monitor
set target_list "bozo"
}
}
}

Loading…
Cancel
Save