* Makefile.in (BASE_FLAGS_TO_PASS): Pass PRMS down, for the PRMS
authorBrendan Kehoe <brendan@cygnus>
Sun, 28 Feb 1993 05:58:37 +0000 (05:58 +0000)
committerBrendan Kehoe <brendan@cygnus>
Sun, 28 Feb 1993 05:58:37 +0000 (05:58 +0000)
special install.

ChangeLog
Makefile.in

index 4170de05aad86993b9357ee7b4574f6fa89d94e9..2f8bdf0aed42a8139eb84876782d74ab4db20223 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Sat Feb 27 21:57:52 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
+
+       * Makefile.in (BASE_FLAGS_TO_PASS): Pass PRMS down, for the PRMS
+       special install.
+
+Tue Feb 23 14:18:28 1993  Mike Werner  (mtw@poseidon.cygnus.com)
+
+       * configure.in: Added "dejagnu" to hosttools list.
+
 Mon Feb 22 23:28:38 1993  Per Bothner  (bothner@rtl.cygnus.com)
 
        * config.sub, configure.in, config.guess:  Add support
index c9be09e4a0fd747aa3cc174da20fe441f5dbe753..b2e68d4b0a9ad6419d20675466399ec57dbe8e33 100644 (file)
@@ -228,6 +228,7 @@ $(end-sanitize-chill)\
        "LOADLIBES=$(LOADLIBES)" \
        "MAKEINFO=$(MAKEINFO)" \
        "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
+       "PRMS=$(PRMS)" \
        "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
        "XTRAFLAGS_FOR_TARGET=$(XTRAFLAGS)" \
        "exec_prefix=$(exec_prefix)" \
@@ -358,7 +359,7 @@ all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \
        $(start-sanitize-chill) \
        all-chillrt \
        $(end-sanitize-chill) \
-       all-gprof all-send-pr all-libm all-deja-gnu \
+       all-gprof all-prms 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-hello all-tar all-gzip all-indent all-recode
@@ -439,9 +440,10 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
        install-newlib \
        install-opcodes \
        install-patch \
+       install-prms \
        install-rcs \
        install-readline \
-       install-recode \        
+       install-recode \
        install-sed \
        install-send-pr \
        install-shellutils \
@@ -1139,6 +1141,25 @@ install-ispell: force
                true ; \
        fi
 
+### prms
+all-prms: force
+       @if [ -f ./prms/Makefile ] ; then \
+               rootme=`pwd` ; export rootme ; \
+               (cd ./prms; \
+               $(MAKE) $(FLAGS_TO_PASS) all) ; \
+       else \
+               true ; \
+       fi
+
+install-prms: force
+       @if [ -f ./prms/Makefile ] ; then \
+               rootme=`pwd` ; export rootme ; \
+               (cd ./prms; \
+               $(MAKE) $(FLAGS_TO_PASS) install) ; \
+       else \
+               true ; \
+       fi
+
 ### send-pr
 all-send-pr: force
        @if [ -f ./send-pr/Makefile ] ; then \