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 | 8a7a39abb4c1aaed9ac27cb77a07f2f6f780120f (patch) | |
tree | 514dea93a93734ea22e4f8da1e594516f6cc5570 /setup.com | |
parent | 56ae5eb977ae79f8555e92cb64e2f94a15f29826 (diff) | |
download | gdb-8a7a39abb4c1aaed9ac27cb77a07f2f6f780120f.zip gdb-8a7a39abb4c1aaed9ac27cb77a07f2f6f780120f.tar.gz gdb-8a7a39abb4c1aaed9ac27cb77a07f2f6f780120f.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 |