From 9f33c26423d3770edd44bb93d8ec1bcee12b595d Mon Sep 17 00:00:00 2001 From: Brendan Kehoe Date: Sun, 28 Feb 1993 05:58:37 +0000 Subject: [PATCH] * Makefile.in (BASE_FLAGS_TO_PASS): Pass PRMS down, for the PRMS special install. --- ChangeLog | 9 +++++++++ Makefile.in | 25 +++++++++++++++++++++++-- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4170de0..2f8bdf0 100644 --- 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 diff --git a/Makefile.in b/Makefile.in index c9be09e..b2e68d4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 \ -- 2.7.4