2009-05-25 Tristan Gingold <gingold@adacore.com>

* setup.com: Complete the file with configuration and build.
This commit is contained in:
Tristan Gingold 2009-05-25 13:31:05 +00:00
parent edcb96782e
commit c1f6cd8a75
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-05-25 Tristan Gingold <gingold@adacore.com>
* setup.com: Complete the file with configuration and build.
2009-05-18 Alexandre Oliva <aoliva@redhat.com>
PR other/40159

View File

@ -5,3 +5,34 @@ $ define coff [-.INCLUDE.COFF]
$ define elf [-.INCLUDE.ELF]
$ define nlm [-.INCLUDE.NLM]
$ define opcode [-.INCLUDE.OPCODE]
$!
$! Build procedures
$!
$! Note: you need make 3.76
$ MAKE="gmake_3_76"
$ OPT=
$!
$ if (P1 .EQS. "CONFIGURE") .OR. (P1 .EQS. "ALL")
$ then
$ set def [.bfd]
$ @configure
$ set def [-.binutils]
$ @configure
$ set def [-.gas]
$ @configure
$ set def [-]
$ endif
$ if (P1 .EQS. "MAKE") .OR. (P1 .EQS. "ALL")
$ then
$ set def [.bfd]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'"
$ set def [-.libiberty]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'"
$ set def [-.opcodes]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'"
$ set def [-.binutils]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'"
$ set def [-.gas]
$ 'MAKE "ARCH=ALPHA" "OPT=''OPT'"
$ set def [-]
$ endif