diff options
author | Karen Christiansen <karen@cygnus> | 1994-05-18 00:03:28 +0000 |
---|---|---|
committer | Karen Christiansen <karen@cygnus> | 1994-05-18 00:03:28 +0000 |
commit | 8456a631c40e302c92b3bd008a872829b4744c6c (patch) | |
tree | 5a380e7dbb2557e8b1d59c75930cd2aa084ca686 /build-all.mk | |
parent | fea15001108d3f02b9c8ee0aed7cfc1f63644054 (diff) | |
download | gdb-8456a631c40e302c92b3bd008a872829b4744c6c.zip gdb-8456a631c40e302c92b3bd008a872829b4744c6c.tar.gz gdb-8456a631c40e302c92b3bd008a872829b4744c6c.tar.bz2 |
more cleanup
Diffstat (limited to 'build-all.mk')
-rw-r--r-- | build-all.mk | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/build-all.mk b/build-all.mk index 751f727..4f99380 100644 --- a/build-all.mk +++ b/build-all.mk @@ -37,7 +37,7 @@ TREE = devo include $(TREE)/release-info -TEST_INSTALL_DISK = /galt +TEST_INSTALL_DISK = /tug INSTALLDIR = $(TEST_INSTALL_DISK)/$(TREE)-test/$(RELEASE_TAG) @@ -95,10 +95,10 @@ ifeq ($(canonhost),i386-unknown-sysv4.2) canonhost := i386-sysv4.2 endif ifeq ($(canonhost),i386-lynx-lynxos) -canonhost := i386-lynxos +canonhost := i386-lynx endif ifeq ($(canonhost),m68k-lynx-lynxos) -canonhost := m68k-lynxos +canonhost := m68k-lynx endif ifeq ($(canonhost),sparc-sun-sunos4.1.3) @@ -108,15 +108,14 @@ TARGETS = $(NATIVE) \ h8300-hms \ i386-aout \ i386-lynx \ - i386-netware \ - i960-vxworks i960-intel-nindy \ + i960-vxworks \ mips-idt-ecoff \ m68k-aout m68k-vxworks m68k-coff \ m68k-lynx \ sh-hms \ sparc-aout sparc-vxworks \ sparclite-aout sparclite-vxworks \ - z8k-coff + sparclite-coff z8k-coff GCC = gcc -O -pipe all: all-cygnus endif @@ -133,8 +132,8 @@ ifeq ($(canonhost),sparc-sun-solaris2) TARGETS = $(NATIVE) \ a29k-amd-udi \ i960-vxworks \ - m68k-aout m68k-coff \ - m88k-coff \ + m68k-aout m68k-coff m68k-vxworks \ + m88k-coff \ mipsel-idt-ecoff \ sparclite-aout CC = cc -Xs @@ -210,21 +209,20 @@ CC = cc all: all-cygnus endif -ifeq ($(canonhost),i386-lynxos) +ifeq ($(canonhost),i386-lynx) TARGETS = $(NATIVE) CC = /bin/gcc all: all-cygnus SHELL=/bin/bash endif -ifeq ($(canonhost),m68k-lynxos) +ifeq ($(canonhost),m68k-lynx) TARGETS = $(NATIVE) CC = /bin/gcc all: all-cygnus SHELL=/bin/bash endif - FLAGS_TO_PASS := \ "GCC=$(GCC)" \ "CC=$(CC)" \ @@ -333,6 +331,16 @@ all-cross: echo " completed successfully" ; \ done +do-dos: + $(MAKE) -f build-all.mk build=$(host) host=i386-go32 all-dos +all-dos: + @for i in $(TARGETS) ; do \ + echo "building $(canonhost) cross to $$i" ; \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) host=$(host) target=$$i do-dos $ +(cyglog) && \ + echo " completed successfully at `date`" ; \ + done + config: @for i in $(TARGETS) ; do \ if [ "$$i" = "native" ] ; then \ |