diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-05-25 13:31:05 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-05-25 13:31:05 +0000 |
commit | c1f6cd8a758120d9c5fb52adf5afd1dc76c34f9a (patch) | |
tree | dffd9b85c529ad6a16a810f8b313b5e8aa1d00c8 /setup.com | |
parent | edcb96782ecef46b59b1e3e3c18a866982e35f96 (diff) | |
download | newlib-c1f6cd8a758120d9c5fb52adf5afd1dc76c34f9a.zip newlib-c1f6cd8a758120d9c5fb52adf5afd1dc76c34f9a.tar.gz newlib-c1f6cd8a758120d9c5fb52adf5afd1dc76c34f9a.tar.bz2 |
2009-05-25 Tristan Gingold <gingold@adacore.com>
* setup.com: Complete the file with configuration and build.
Diffstat (limited to 'setup.com')
-rw-r--r-- | setup.com | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -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
\ No newline at end of file |