Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2009-05-25 17:31:05 +0400
committerTristan Gingold <gingold@adacore.com>2009-05-25 17:31:05 +0400
commitc1f6cd8a758120d9c5fb52adf5afd1dc76c34f9a (patch)
treedffd9b85c529ad6a16a810f8b313b5e8aa1d00c8 /setup.com
parentedcb96782ecef46b59b1e3e3c18a866982e35f96 (diff)
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.com31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.com b/setup.com
index 6083dda32..9067f3677 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