add support for tar gzip hello recode and indent
authorDavid D. Zuhn <zoo@cygnus>
Tue, 16 Feb 1993 17:58:39 +0000 (17:58 +0000)
committerDavid D. Zuhn <zoo@cygnus>
Tue, 16 Feb 1993 17:58:39 +0000 (17:58 +0000)
ChangeLog
Makefile.in
configure.in

index 741051cb6f28c56ea88c2b89e2c4edae6f81c6e5..766fffa86a5459a6ffb0025c61853135451557a8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
 
        * Makefile.in (DEVO_SUPPORT):  Remove etc directory
index 02e9a8dc3e46ea2c211b09421d46ce63bce13d16..0e7dc89cc8494b006186b80ce2e0ee8f988f6ead 100644 (file)
@@ -359,7 +359,8 @@ 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-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 \
@@ -404,43 +405,56 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
        install-autoconf \
        install-bfd \
        install-binutils \
-       install-opcodes \
        install-byacc \
+       $(start-sanitize-chill) \
+       install-chillrt \
+       $(end-sanitize-chill) \
        install-cvs \
-       install-diff \
        install-deja-gnu \
+       install-diff \
        install-emacs \
        install-etc \
        install-expect \
+       install-fileutils \
+       install-find \
        install-flex \
        install-gas \
+       install-gawk \
        install-gdb \
        install-glob \
        install-gprof \
        install-grep \
+       install-gzip \
+       install-hello \
+       install-indent \
        install-ispell \
        install-ld \
        install-libg++ \
        install-libiberty \
        install-libm \
+       install-m4 \
        install-make \
        install-mmalloc \
        install-newlib \
-       $(start-sanitize-chill) \
-       install-chillrt \
-       $(end-sanitize-chill) \
+       install-opcodes \
        install-patch \
        install-rcs \
        install-readline \
+       install-recode \        
+       install-sed \
        install-send_pr \
+       install-shellutils \
+       install-sim \
+       install-tar \
        install-tcl \
        install-texinfo \
-       install-tk  \
-       install-sim \
-       install-fileutils install-find install-gawk install-m4 install-sed install-shellutils \
-       install-textutils install-time install-wdiff install-uudecode
+       install-textutils \
+       install-time \
+       install-tk \
+       install-uudecode \
+       install-wdiff 
 
-#
+# 
 # Install the gcc headers files, but not the fixed include files,
 # which we are not allowed to distribute.  This rule is very dependent
 # on the workings of the gcc Makefile.in.
@@ -470,6 +484,92 @@ install.cross: install-dirs install-libiberty install-mmalloc \
        $(end-sanitize-chill) \
        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
 all-deja-gnu: force
        @if [ -f ./deja-gnu/Makefile ] ; then \
index b7ac41ae0edc1e28ad480850eeb944fbea8d6dac..25113a3ba570ab9932faaa09d69ceb3ec0741235 100644 (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
            send_pr gprof gdbtest tgas etc expect deja-gnu sim
             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