* 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
	(also updated dates in test-build.mk and build-all.mk)
This commit is contained in:
David D. Zuhn 1992-11-30 09:15:40 +00:00
parent 94daba7f77
commit c676f606d2
3 changed files with 12 additions and 2 deletions

View File

@ -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 * Makefile.in: define flags for X11 include files and library file
locations, pass them down to the programs that need this info 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 * config/{mh-hpux,mh-solaris}: define the "standard" locations for
the vendor supplied X11 headers and libraries the vendor supplied X11 headers and libraries

View File

@ -15,7 +15,7 @@ TREE = devo
NATIVE = native NATIVE = native
DATE = 921119 DATE = 921127
TAG = latest-$(DATE) TAG = latest-$(DATE)
@ -104,6 +104,14 @@ all-cygnus:
done done
@echo done at `date` @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: build-cygnus:
@echo build started at `date` @echo build started at `date`
@for i in $(TARGETS) ; do \ @for i in $(TARGETS) ; do \

View File

@ -74,7 +74,7 @@ case "${target}" in
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/bfd//;s/gdb//'` configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/bfd//;s/gdb//'`
;; ;;
*-*-solaris2) *-*-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 esac