| 1 | # Configuration script
|
|---|
| 2 | # Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
|---|
| 3 |
|
|---|
| 4 | # This program is free software; you can redistribute it and/or modify
|
|---|
| 5 | # it under the terms of the GNU General Public License as published by
|
|---|
| 6 | # the Free Software Foundation; either version 2 of the License, or
|
|---|
| 7 | # (at your option) any later version.
|
|---|
| 8 | #
|
|---|
| 9 | # This program is distributed in the hope that it will be useful,
|
|---|
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 12 | # GNU General Public License for more details.
|
|---|
| 13 | #
|
|---|
| 14 | # You should have received a copy of the GNU General Public License
|
|---|
| 15 | # along with this program; if not, write to the Free Software
|
|---|
| 16 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|---|
| 17 |
|
|---|
| 18 | ### WARNING
|
|---|
| 19 | ### This script must NOT use any 8-bit chars!
|
|---|
| 20 | ### WARNING
|
|---|
| 21 |
|
|---|
| 22 | # This is an MPW Shell script that sets everything up for compilation,
|
|---|
| 23 | # mainly creating directories, and editing copies of files.
|
|---|
| 24 |
|
|---|
| 25 | Set savedir "`Directory`"
|
|---|
| 26 |
|
|---|
| 27 | #Set Echo 1
|
|---|
| 28 |
|
|---|
| 29 | Set ThisScript "{0}"
|
|---|
| 30 |
|
|---|
| 31 | Set srcroot "--------"
|
|---|
| 32 |
|
|---|
| 33 | Set srcdir ":"
|
|---|
| 34 |
|
|---|
| 35 | Set objdir ":"
|
|---|
| 36 |
|
|---|
| 37 | Set prefix "{MPW}":GNUTools:
|
|---|
| 38 |
|
|---|
| 39 | Set exec_prefix ""
|
|---|
| 40 |
|
|---|
| 41 | Set bindir ""
|
|---|
| 42 |
|
|---|
| 43 | Set host_alias "m68k-apple-mpw"
|
|---|
| 44 |
|
|---|
| 45 | Set target_alias {host_alias}
|
|---|
|
|---|