diff options
author | Brendan Kehoe <brendan@cygnus> | 1993-02-28 05:58:37 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@cygnus> | 1993-02-28 05:58:37 +0000 |
commit | 9f33c26423d3770edd44bb93d8ec1bcee12b595d (patch) | |
tree | 5b2465cb1b06e40736161fa2c0e25938eb0950de /Makefile.in | |
parent | 33023c9c9c5ad46ead9739d7ab156b5824445b42 (diff) | |
download | binutils-gdb-9f33c26423d3770edd44bb93d8ec1bcee12b595d.tar.gz |
* Makefile.in (BASE_FLAGS_TO_PASS): Pass PRMS down, for the PRMS
special install.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index c9be09e4a0f..b2e68d4b0a9 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 \ |