aboutsummaryrefslogtreecommitdiff
path: root/gas/mpw-build.in
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1994-02-26 21:25:10 +0000
committerStan Shebs <shebs@codesourcery.com>1994-02-26 21:25:10 +0000
commitedd9075caff5c19967ee23c38b8deef4c65e7969 (patch)
tree27230334255e8f67120ab24467fc71aab9db0d53 /gas/mpw-build.in
parentb495c3144236b906e6afed82b2507449bd962038 (diff)
downloadgdb-edd9075caff5c19967ee23c38b8deef4c65e7969.zip
gdb-edd9075caff5c19967ee23c38b8deef4c65e7969.tar.gz
gdb-edd9075caff5c19967ee23c38b8deef4c65e7969.tar.bz2
Sat Feb 26 13:23:06 1994 Stan Shebs (shebs@andros.cygnus.com)
* mpw-make.in (install): Moved here from mpw-build.in. * mpw-build.in: Removed, functionality in mpw-make.in
Diffstat (limited to 'gas/mpw-build.in')
-rw-r--r--gas/mpw-build.in48
1 files changed, 0 insertions, 48 deletions
diff --git a/gas/mpw-build.in b/gas/mpw-build.in
deleted file mode 100644
index f35c93d..0000000
--- a/gas/mpw-build.in
+++ /dev/null
@@ -1,48 +0,0 @@
-# Script fragment to build MPW GAS.
-
-Set BuildTarget "none"
-
-Loop
- Break If {#} == 0
- If "{1}" =~ /--srcdir/
- Set srcdir "{2}"
- Shift 1
- Else If "{1}" =~ /--topdir/
- Set topsrcdir "{2}"
- Shift 1
- Else If "{1}" =~ /--prefix/
- Set prefix "{2}"
- Shift 1
- Else If "{1}" =~ /-v/
- Set verify 1
- Set verifystr "-v"
- Shift 1
- Else
- If "{BuildTarget}" =~ /none/
- Set BuildTarget "{1}"
- Else
- Echo Only one build target allowed, ignoring "{1}"
- End If
- End If
- Shift 1
-End Loop
-
-Set libsubdir "{libdir}"gcc-lib:"{target_canonical}":"{version}":
-
-If "{BuildTarget}" =~ /all/
- Echo "Set Echo 1" >all.makeout
- Make >>all.makeout
- all.makeout
- Delete all.makeout
-Else If "{BuildTarget}" =~ /install/
- If "`Exists "{prefix}"`" == ""
- Echo "{prefix}" does not exist, cannot install anything
- Exit 1
- End If
- If "`Exists "{bindir}"`" == ""
- NewFolder "{bindir}"
- End If
- Duplicate -y :as.new "{bindir}"as
-Else
- Echo {BuildTarget} not a valid build target
-End If