* Makefile.in (BASE_FLAGS_TO_PASS): Pass PRMS down, for the PRMS

special install.
This commit is contained in:
Brendan Kehoe 1993-02-28 05:58:37 +00:00
parent 33023c9c9c
commit 9f33c26423
2 changed files with 32 additions and 2 deletions

View file

@ -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

View 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 \