mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
added tcl, tk, and expect
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in: added rules to handle tcl, tk, and expect
|
||||||
|
|
||||||
|
* configure.in: handle those directories if they exist
|
||||||
|
|
||||||
Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
* config.sub: removed bogus hppabsd and hppahpux names, since
|
* config.sub: removed bogus hppabsd and hppahpux names, since
|
||||||
|
101
Makefile.in
101
Makefile.in
@ -245,6 +245,7 @@ all.normal: all-autoconf all-libiberty all-mmalloc all-texinfo \
|
|||||||
all-gcc all-binutils all-libg++ all-readline all-gdb \
|
all-gcc all-binutils all-libg++ all-readline all-gdb \
|
||||||
all-make all-rcs all-cvs all-diff all-grep \
|
all-make all-rcs all-cvs all-diff all-grep \
|
||||||
all-patch all-emacs all-ispell all-etc \
|
all-patch all-emacs all-ispell all-etc \
|
||||||
|
all-tcl all-tk all-expect \
|
||||||
all-newlib all-gprof all-send_pr all-libm all-deja-gnu
|
all-newlib all-gprof all-send_pr all-libm all-deja-gnu
|
||||||
|
|
||||||
all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \
|
all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \
|
||||||
@ -257,6 +258,7 @@ clean: clean-autoconf clean-libiberty clean-mmalloc clean-texinfo \
|
|||||||
clean-gcc clean-readline clean-glob clean-gdb \
|
clean-gcc clean-readline clean-glob clean-gdb \
|
||||||
clean-make clean-diff clean-grep clean-rcs \
|
clean-make clean-diff clean-grep clean-rcs \
|
||||||
clean-cvs clean-patch clean-emacs clean-ispell \
|
clean-cvs clean-patch clean-emacs clean-ispell \
|
||||||
|
clean-tcl clean-tk clean-expect \
|
||||||
clean-libg++ clean-gprof clean-send_pr clean-libm clean-xiberty \
|
clean-libg++ clean-gprof clean-send_pr clean-libm clean-xiberty \
|
||||||
clean-deja-gnu
|
clean-deja-gnu
|
||||||
-rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
|
-rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
|
||||||
@ -289,6 +291,7 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
|
|||||||
install-deja-gnu \
|
install-deja-gnu \
|
||||||
install-emacs \
|
install-emacs \
|
||||||
install-etc \
|
install-etc \
|
||||||
|
install-expect \
|
||||||
install-flex \
|
install-flex \
|
||||||
install-gas \
|
install-gas \
|
||||||
install-gdb \
|
install-gdb \
|
||||||
@ -307,7 +310,9 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
|
|||||||
install-rcs \
|
install-rcs \
|
||||||
install-readline \
|
install-readline \
|
||||||
install-send_pr \
|
install-send_pr \
|
||||||
install-texinfo
|
install-tcl \
|
||||||
|
install-texinfo \
|
||||||
|
install-tk
|
||||||
|
|
||||||
gcc-no-fixedincludes:
|
gcc-no-fixedincludes:
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
@ -1206,6 +1211,100 @@ install-libg++: force
|
|||||||
else \
|
else \
|
||||||
true ; \
|
true ; \
|
||||||
fi
|
fi
|
||||||
|
### tcl
|
||||||
|
all-tcl:
|
||||||
|
@if [ -f ./tcl/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./tcl; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) all) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
clean-tcl: force
|
||||||
|
@if [ -f ./tcl/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./tcl; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) clean) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
install-tcl: force
|
||||||
|
@if [ -f ./tcl/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./tcl; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) install) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
### tk
|
||||||
|
all-tk: all-tcl
|
||||||
|
@if [ -f ./tk/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./tk; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) all) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
clean-tk: force
|
||||||
|
@if [ -f ./tk/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./tk; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) clean) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
install-tk: force
|
||||||
|
@if [ -f ./tk/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./tk; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) install) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
### tk
|
||||||
|
all-expect: all-tcl
|
||||||
|
@if [ -f ./expect/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./expect; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) all) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
clean-expect: force
|
||||||
|
@if [ -f ./expect/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./expect; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) clean) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
install-expect: force
|
||||||
|
@if [ -f ./expect/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
srcroot=`cd $(srcdir); pwd`; export srcroot ; \
|
||||||
|
(cd ./expect; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) install) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
### other supporting targets
|
### other supporting targets
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# script appropriate for this directory. For more information, check
|
# script appropriate for this directory. For more information, check
|
||||||
# any existing configure script.
|
# any existing configure script.
|
||||||
|
|
||||||
configdirs="autoconf mmalloc libiberty texinfo flex byacc bison opcodes bfd binutils gcc readline glob ld gas gdb emacs ispell make grep diff rcs cvs patch send_pr libg++ newlib gprof gdbtest libm tgas etc deja-gnu"
|
configdirs="autoconf mmalloc libiberty texinfo flex byacc bison opcodes bfd binutils gcc readline glob ld gas gdb emacs ispell make grep diff rcs cvs patch send_pr libg++ newlib gprof gdbtest libm tgas etc tcl expect tk deja-gnu"
|
||||||
srctrigger=move-if-change
|
srctrigger=move-if-change
|
||||||
srcname="gnu development package"
|
srcname="gnu development package"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user