aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1993-02-03 02:59:27 +0000
committerDavid D. Zuhn <zoo@cygnus>1993-02-03 02:59:27 +0000
commit4a2f0c79f555db8503d3b1e6940eab7e3eb428c6 (patch)
tree16562252bc2f0fffd26599c1afebf5aa8cfcd1ad /Makefile.in
parent9da75ad32ed2e8a5e8dad4ef019d7c31fe8c209e (diff)
downloadgdb-4a2f0c79f555db8503d3b1e6940eab7e3eb428c6.zip
gdb-4a2f0c79f555db8503d3b1e6940eab7e3eb428c6.tar.gz
gdb-4a2f0c79f555db8503d3b1e6940eab7e3eb428c6.tar.bz2
added support for uudecode
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in21
1 files changed, 19 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 9c54d9e..668e206 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -329,7 +329,7 @@ all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \
$(end-sanitize-chill) \
all-gprof all-send_pr all-libm all-deja-gnu \
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 \
@@ -410,7 +410,7 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
install-z8ksim \
install-h8300sim \
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,
@@ -1291,6 +1291,23 @@ install-wdiff: force
true ; \
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
all-shellutils: force
@if [ -f ./shellutils/Makefile ] ; then \