aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1997-02-14 03:06:09 +0000
committerIan Lance Taylor <ian@airs.com>1997-02-14 03:06:09 +0000
commitc9b727f9e2d8db4c6ce11efc8dabad1f942362b9 (patch)
tree0de1e06f0fff02ba92b82b89d40fed1c725c86c3
parent246c54580e6e70cbe428e2e06237bc8107edfcc3 (diff)
downloadbinutils-c9b727f9e2d8db4c6ce11efc8dabad1f942362b9.zip
binutils-c9b727f9e2d8db4c6ce11efc8dabad1f942362b9.tar.gz
binutils-c9b727f9e2d8db4c6ce11efc8dabad1f942362b9.tar.bz2
Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
* makefile.vms: New file. * make-all.com: Remove.
-rw-r--r--.Sanitize2
-rw-r--r--make-all.com16
-rw-r--r--makefile.vms38
3 files changed, 39 insertions, 17 deletions
diff --git a/.Sanitize b/.Sanitize
index 6b73884..a5c3f76 100644
--- a/.Sanitize
+++ b/.Sanitize
@@ -57,7 +57,7 @@ keep_these_too="${keep_these_too} .cvsignore CYGNUS autoconf
pagas patch perl prms
rcs readline sed send-pr shellutils sim tar textutils time
texinfo tgas utils uudecode wdiff xiberty
- configure.bat makeall.bat setup.com make-all.com winsup
+ configure.bat makeall.bat setup.com makefile.vms winsup
mpw-README mpw-configure mpw-config.in mpw-build.in mpw-install"
lose_these_too="${lose_these_too} testsuite"
diff --git a/make-all.com b/make-all.com
deleted file mode 100644
index 7967473..0000000
--- a/make-all.com
+++ /dev/null
@@ -1,16 +0,0 @@
-$! This file is used to build the binutils on openVMS/Alpha.
-$! You must have GNU make for VMS.
-$! Run this script to build nm, size, objdump, and as.
-$ @setup
-$ set def [.bfd]
-$ gmake
-$ set def [-.opcodes]
-$ gmake
-$ set def [-.libiberty]
-$ gmake
-$ set def [-.binutils]
-$ gmake
-$ set def [-.gas]
-$ @conf-a-gas
-$ gmake
-$ set def [-]
diff --git a/makefile.vms b/makefile.vms
new file mode 100644
index 0000000..b685eb0
--- /dev/null
+++ b/makefile.vms
@@ -0,0 +1,38 @@
+#
+# makefile for bfd, binutils and gas
+#
+# Created by Klaus K"ampf (kkaempf@progis.de)
+#
+# You must use Version 3.75p (proGIS enhanced) of GNU Make
+#
+#
+CC = gcc
+
+all:
+ $$ @setup
+ $(CD) [.bfd]
+ gmake "CC=$(CC)"
+ $(CD) [-.opcodes]
+ gmake "CC=$(CC)"
+ $(CD) [-.libiberty]
+ gmake "CC=$(CC)"
+ $(CD) [-.binutils]
+ gmake "CC=$(CC)"
+ $(CD) [-.gas]
+ $$ @conf-a-gas
+ gmake "CC=$(CC)"
+ $(CD) [-]
+
+clean:
+ $(CD) [.bfd]
+ gmake clean
+ $(CD) [-.opcodes]
+ gmake clean
+ $(CD) [-.libiberty]
+ gmake clean
+ $(CD) [-.binutils]
+ gmake clean
+ $(CD) [-.gas]
+ gmake clean
+ $(CD) [-]
+