summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2009-05-25 13:31:05 +0000
committerTristan Gingold <gingold@adacore.com>2009-05-25 13:31:05 +0000
commit8a7a39abb4c1aaed9ac27cb77a07f2f6f780120f (patch)
tree514dea93a93734ea22e4f8da1e594516f6cc5570
parent56ae5eb977ae79f8555e92cb64e2f94a15f29826 (diff)
2009-05-25 Tristan Gingold <gingold@adacore.com>
* setup.com: Complete the file with configuration and build.
-rw-r--r--ChangeLog4
-rw-r--r--setup.com31
2 files changed, 35 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a8bb83478c..32dd8c4583 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/setup.com b/setup.com
index 6083dda329..9067f3677e 100644
--- a/setup.com
+++ b/setup.com
@@ -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