aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--build-all.mk10
-rw-r--r--configure.in2
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a6b3af..ba90378 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@ Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* Makefile.in: define flags for X11 include files and library file
locations, pass them down to the programs that need this info
+ * build-all.mk: added a 'native' target, to 3stage the native toolchain
+
* config/{mh-hpux,mh-solaris}: define the "standard" locations for
the vendor supplied X11 headers and libraries
diff --git a/build-all.mk b/build-all.mk
index 28fa8b6..8e1ccca 100644
--- a/build-all.mk
+++ b/build-all.mk
@@ -15,7 +15,7 @@ TREE = devo
NATIVE = native
-DATE = 921119
+DATE = 921127
TAG = latest-$(DATE)
@@ -104,6 +104,14 @@ all-cygnus:
done
@echo done at `date`
+native:
+ @echo build started at `date`
+ [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
+ rm -f /usr/cygnus/$(TAG)
+ ln -s $(INSTALLDIR) /usr/cygnus/$(TAG)
+ $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(host)-stamp-3stage-done $(log)
+ @echo done at `date`
+
build-cygnus:
@echo build started at `date`
@for i in $(TARGETS) ; do \
diff --git a/configure.in b/configure.in
index e36e83a..673c264 100644
--- a/configure.in
+++ b/configure.in
@@ -74,7 +74,7 @@ case "${target}" in
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/bfd//;s/gdb//'`
;;
*-*-solaris2)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/emacs//'`
;;
esac