2009-09-01 Tristan Gingold <gingold@adacore.com>

* makefile.vms: Adjust include pathes.  Remove useless vaxctrl
	library.
	* configure.com: Ported to Itanium VMS.  Create build.com DCL script.
	Make edit silent.
This commit is contained in:
Tristan Gingold 2009-09-01 13:38:26 +00:00
parent 21bc970cf8
commit 1cd39cb9b3
2 changed files with 36 additions and 18 deletions

View File

@ -1,3 +1,8 @@
2009-09-01 Tristan Gingold <gingold@adacore.com>
* setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
Remove logical names.
2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com> 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
* ltmain.sh (func_normal_abspath): New function. * ltmain.sh (func_normal_abspath): New function.

View File

@ -1,38 +1,51 @@
$! setup files for openVMS/Alpha
$! $!
$ define aout [-.INCLUDE.AOUT] $! Build procedure
$ define coff [-.INCLUDE.COFF]
$ define elf [-.INCLUDE.ELF]
$ define nlm [-.INCLUDE.NLM]
$ define opcode [-.INCLUDE.OPCODE]
$! $!
$! Build procedures $! Note: you need a DCL-compatible gnu make.
$! $ MAKE="make381"
$! Note: you need make 3.76 $ OPT=""
$ MAKE="gmake_3_76"
$ OPT=
$! $!
$ if (P1 .EQS. "CONFIGURE") .OR. (P1 .EQS. "ALL") $ if (P1 .EQS. "CONFIGURE") .OR. (P1 .EQS. "ALL")
$ then $ then
$ set def [.bfd] $ set def [.bfd]
$ @configure $ @configure
$ set def [-.libiberty]
$ @configure
$ set def [-.opcodes]
$ @configure
$ set def [-.binutils] $ set def [-.binutils]
$ @configure $ @configure
$ set def [-.gas] $ set def [-.gas]
$ @configure $ @configure
$ set def [-] $ set def [-]
$ endif $ endif
$ if (P1 .EQS. "MAKE") .OR. (P1 .EQS. "ALL") $ if (P1 .EQS. "BUILD") .OR. (P1 .EQS. "ALL")
$ then $ then
$ set def [.bfd] $ set def [.bfd]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'" $ @build
$ set def [-.libiberty] $ set def [-.libiberty]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'" $ @build
$ set def [-.opcodes] $ set def [-.opcodes]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'" $ @build
$ set def [-.binutils] $ set def [-.binutils]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'" $ @build
$ set def [-.gas] $ set def [-.gas]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'" $ @build
$ set def [-] $ set def [-]
$ endif $ endif
$ if P1 .EQS. "MAKE"
$ then
$ ARCH=F$GETSYI("ARCH_NAME")
$ ARCH=F$EDIT(arch,"UPCASE")
$ set def [.bfd]
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
$ set def [-.libiberty]
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
$ set def [-.opcodes]
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
$ set def [-.binutils]
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
$ set def [-.gas]
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
$ set def [-]
$ endif