Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>

* makefile.vms: New file.
	* make-all.com: Remove.
This commit is contained in:
Ian Lance Taylor 1997-02-14 03:06:09 +00:00
parent 246c54580e
commit c9b727f9e2
3 changed files with 39 additions and 17 deletions

View File

@ -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"

View File

@ -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 [-]

38
makefile.vms Normal file
View File

@ -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) [-]