mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:35:43 +08:00
added support for uudecode
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
|
* configure.in: add uudecode to host_tools
|
||||||
|
|
||||||
|
* Makefile.in: added {all,install}-uudecode targets, added them to
|
||||||
|
the appropriate lists
|
||||||
|
|
||||||
Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
|
Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* Makefile.in (all-gcc): Added dependency on all-gas.
|
* Makefile.in (all-gcc): Added dependency on all-gas.
|
||||||
|
21
Makefile.in
21
Makefile.in
@ -329,7 +329,7 @@ all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \
|
|||||||
$(end-sanitize-chill) \
|
$(end-sanitize-chill) \
|
||||||
all-gprof all-send_pr all-libm all-deja-gnu \
|
all-gprof all-send_pr all-libm all-deja-gnu \
|
||||||
all-fileutils all-find all-gawk all-sed all-shellutils \
|
all-fileutils all-find all-gawk all-sed all-shellutils \
|
||||||
all-textutils all-time all-wdiff
|
all-textutils all-time all-wdiff all-uudecode
|
||||||
|
|
||||||
|
|
||||||
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 \
|
||||||
@ -410,7 +410,7 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
|
|||||||
install-z8ksim \
|
install-z8ksim \
|
||||||
install-h8300sim \
|
install-h8300sim \
|
||||||
install-fileutils install-find install-gawk install-m4 install-sed install-shellutils \
|
install-fileutils install-find install-gawk install-m4 install-sed install-shellutils \
|
||||||
install-textutils install-time install-wdiff
|
install-textutils install-time install-wdiff install-uudecode
|
||||||
|
|
||||||
#
|
#
|
||||||
# Install the gcc headers files, but not the fixed include files,
|
# Install the gcc headers files, but not the fixed include files,
|
||||||
@ -1291,6 +1291,23 @@ install-wdiff: force
|
|||||||
true ; \
|
true ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
### uudecode
|
||||||
|
all-uudecode: all-libiberty
|
||||||
|
@if [ -f ./uudecode/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
(cd ./uudecode; $(MAKE) $(FLAGS_TO_PASS) all) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
install-uudecode: force
|
||||||
|
@if [ -f ./uudecode/Makefile ] ; then \
|
||||||
|
rootme=`pwd` ; export rootme ; \
|
||||||
|
(cd ./uudecode; $(MAKE) $(FLAGS_TO_PASS) install) ; \
|
||||||
|
else \
|
||||||
|
true ; \
|
||||||
|
fi
|
||||||
|
|
||||||
### shellutils
|
### shellutils
|
||||||
all-shellutils: force
|
all-shellutils: force
|
||||||
@if [ -f ./shellutils/Makefile ] ; then \
|
@if [ -f ./shellutils/Makefile ] ; then \
|
||||||
|
@ -31,7 +31,7 @@ host_libs="mmalloc libiberty opcodes bfd readline glob tcl tk"
|
|||||||
host_tools="texinfo byacc flex bison binutils ld gas gcc gdb make patch
|
host_tools="texinfo byacc flex bison binutils ld gas gcc gdb make patch
|
||||||
send_pr gprof gdbtest tgas etc expect deja-gnu z8ksim h8300sim
|
send_pr gprof gdbtest tgas etc expect deja-gnu z8ksim h8300sim
|
||||||
m4 autoconf ispell grep diff rcs cvs fileutils shellutils
|
m4 autoconf ispell grep diff rcs cvs fileutils shellutils
|
||||||
textutils wdiff find emacs"
|
textutils wdiff find emacs uudecode"
|
||||||
|
|
||||||
|
|
||||||
# these libraries are built for the target environment, and are built after
|
# these libraries are built for the target environment, and are built after
|
||||||
|
Reference in New Issue
Block a user