add support for tar gzip hello recode and indent

This commit is contained in:
David D. Zuhn 1993-02-16 17:58:39 +00:00
parent 224226b85c
commit 07362bd93b
3 changed files with 117 additions and 12 deletions

View file

@ -1,3 +1,7 @@
Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* configure.in, Makefile.in: add hello, tar, gzip, recode, indent
Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com) Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
* Makefile.in (DEVO_SUPPORT): Remove etc directory * Makefile.in (DEVO_SUPPORT): Remove etc directory

View file

@ -359,7 +359,8 @@ 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-uudecode all-textutils all-time all-wdiff all-uudecode \
all-hello all-tar all-gzip all-indent all-recode
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 \
@ -404,41 +405,54 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
install-autoconf \ install-autoconf \
install-bfd \ install-bfd \
install-binutils \ install-binutils \
install-opcodes \
install-byacc \ install-byacc \
$(start-sanitize-chill) \
install-chillrt \
$(end-sanitize-chill) \
install-cvs \ install-cvs \
install-diff \
install-deja-gnu \ install-deja-gnu \
install-diff \
install-emacs \ install-emacs \
install-etc \ install-etc \
install-expect \ install-expect \
install-fileutils \
install-find \
install-flex \ install-flex \
install-gas \ install-gas \
install-gawk \
install-gdb \ install-gdb \
install-glob \ install-glob \
install-gprof \ install-gprof \
install-grep \ install-grep \
install-gzip \
install-hello \
install-indent \
install-ispell \ install-ispell \
install-ld \ install-ld \
install-libg++ \ install-libg++ \
install-libiberty \ install-libiberty \
install-libm \ install-libm \
install-m4 \
install-make \ install-make \
install-mmalloc \ install-mmalloc \
install-newlib \ install-newlib \
$(start-sanitize-chill) \ install-opcodes \
install-chillrt \
$(end-sanitize-chill) \
install-patch \ install-patch \
install-rcs \ install-rcs \
install-readline \ install-readline \
install-recode \
install-sed \
install-send_pr \ install-send_pr \
install-shellutils \
install-sim \
install-tar \
install-tcl \ install-tcl \
install-texinfo \ install-texinfo \
install-tk \ install-textutils \
install-sim \ install-time \
install-fileutils install-find install-gawk install-m4 install-sed install-shellutils \ install-tk \
install-textutils install-time install-wdiff install-uudecode install-uudecode \
install-wdiff
# #
# Install the gcc headers files, but not the fixed include files, # Install the gcc headers files, but not the fixed include files,
@ -470,6 +484,92 @@ install.cross: install-dirs install-libiberty install-mmalloc \
$(end-sanitize-chill) \ $(end-sanitize-chill) \
install-gcc install-etc install-deja-gnu install-gcc install-etc install-deja-gnu
### gzip
all-gzip: all-libiberty
@if [ -f ./gzip/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./gzip; $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
install-gzip: force
@if [ -f ./gzip/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./gzip; $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### hello
all-hello: all-libiberty
@if [ -f ./hello/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./hello; $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
install-hello: force
@if [ -f ./hello/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./hello; $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### recode
all-recode: all-libiberty
@if [ -f ./recode/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./recode; $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
install-recode: force
@if [ -f ./recode/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./recode; $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### indent
all-indent: force
@if [ -f ./indent/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./indent; $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
install-indent: force
@if [ -f ./indent/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./indent; $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### tar
all-tar: all-libiberty
@if [ -f ./tar/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./tar; $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
install-tar: force
@if [ -f ./tar/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./tar; $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### deja-gnu ### deja-gnu
all-deja-gnu: force all-deja-gnu: force
@if [ -f ./deja-gnu/Makefile ] ; then \ @if [ -f ./deja-gnu/Makefile ] ; then \

View file

@ -31,7 +31,8 @@ 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 sim send_pr gprof gdbtest tgas etc expect deja-gnu sim
m4 autoconf ispell grep diff rcs cvs fileutils shellutils m4 autoconf ispell grep diff rcs cvs fileutils shellutils
textutils wdiff find emacs uudecode" textutils wdiff find emacs uudecode hello tar gzip indent
recode"
# these libraries are built for the target environment, and are built after # these libraries are built for the target environment, and are built after