diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-05-25 19:48:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-05-25 19:48:13 +0000 |
commit | 60986901af1fb1a79b9ecf0598bfea200baf9773 (patch) | |
tree | 42a8efa05c5d8c69919f6b86f4f43f6514f1b423 /build-all.mk | |
parent | da3cd00a63bc609461345bef7be9ba37de0543ea (diff) | |
download | fsf-binutils-gdb-60986901af1fb1a79b9ecf0598bfea200baf9773.zip fsf-binutils-gdb-60986901af1fb1a79b9ecf0598bfea200baf9773.tar.gz fsf-binutils-gdb-60986901af1fb1a79b9ecf0598bfea200baf9773.tar.bz2 |
* build-all.mk (all-cross): New target for Canadian Cross.
Added Q2 go32 targets.
* test-build.mk: Configure go32 cross sparclite-aout and
mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
Diffstat (limited to 'build-all.mk')
-rw-r--r-- | build-all.mk | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build-all.mk b/build-all.mk index c710397..1684c7e 100644 --- a/build-all.mk +++ b/build-all.mk @@ -39,6 +39,9 @@ endif ifeq ($(canonhost),i486-unknown-sco3.2v4.0) canonhost := i386-sco3.2v4 endif +ifeq ($(canonhost),i386-unknown-go32) +canonhost := i386-go32 +endif ifeq ($(canonhost),sparc-sun-sunos4.1.1) TARGETS = $(NATIVE) i386-go32 m68k-aout m68k-vxworks \ @@ -105,6 +108,17 @@ TARGETS = $(NATIVE) i386-aout all: all-cygnus endif +ifeq ($(canonhost),i386-go32) +TARGETS = m68k-aout a29k-amd-udi m68k-coff i386-aout sparclite-aout \ + h8300-sim mips-idt-ecoff +ifndef build +build := $(shell $(TREE)/config.guess) +endif +CC = i386-go32-gcc +GCC = i386-go32-gcc -O +all: all-cross +endif + FLAGS_TO_PASS := \ "GCC=$(GCC)" \ "CC=$(CC)" \ @@ -176,6 +190,16 @@ all-native: echo " completed successfully" ; \ done +all-cross: + [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) + rm -f /usr/cygnus/$(TAG) + ln -s $(INSTALLDIR) /usr/cygnus/$(TAG) + @for i in $(TARGETS) ; do \ + echo "building $(canonhost) cross to $$i" ; \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build=$(build) do-cygnus $(tlog) && \ + echo " completed successfully" ; \ + done + config: @for i in $(TARGETS) ; do \ if [ "$$i" = "native" ] ; then \ |