diff options
author | Brendan Kehoe <brendan@cygnus> | 1993-03-02 00:44:39 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@cygnus> | 1993-03-02 00:44:39 +0000 |
commit | 0e519240873dd8b9ef93ac9c35e7ef9e8aa194b8 (patch) | |
tree | b8a8af9874c823656f94bb2fe26b11abfac425d8 /Makefile.in | |
parent | b4d4c33d9489132fbe22692419353b53a2db36bd (diff) | |
download | gdb-0e519240873dd8b9ef93ac9c35e7ef9e8aa194b8.zip gdb-0e519240873dd8b9ef93ac9c35e7ef9e8aa194b8.tar.gz gdb-0e519240873dd8b9ef93ac9c35e7ef9e8aa194b8.tar.bz2 |
* Makefile.in (all-prms, install-prms): Changed to gnats.
* configure.in (host_tools): Changed prms to gnats.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in index 3acc7e9..a822446 100644 --- a/Makefile.in +++ b/Makefile.in @@ -197,6 +197,7 @@ XTRAFLAGS = ` \ echo ; \ fi` +GNATS = all-gnats #### host and target specific makefile fragments come in here. ### @@ -228,6 +229,7 @@ $(end-sanitize-chill)\ "LOADLIBES=$(LOADLIBES)" \ "MAKEINFO=$(MAKEINFO)" \ "NM_FOR_TARGET=$(NM_FOR_TARGET)" \ + "GNATS=$(GNATS)" \ "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \ "XTRAFLAGS_FOR_TARGET=$(XTRAFLAGS)" \ "exec_prefix=$(exec_prefix)" \ @@ -358,7 +360,7 @@ all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \ $(start-sanitize-chill) \ all-chillrt \ $(end-sanitize-chill) \ - all-gprof all-prms all-send-pr all-libm all-deja-gnu \ + all-gprof all-gnats 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,7 +441,7 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \ install-newlib \ install-opcodes \ install-patch \ - install-prms \ + install-gnats \ install-rcs \ install-readline \ install-recode \ @@ -1140,20 +1142,20 @@ install-ispell: force true ; \ fi -### prms -all-prms: force - @if [ -f ./prms/Makefile ] ; then \ +### gnats +all-gnats: force + @if [ -f ./gnats/Makefile ] ; then \ rootme=`pwd` ; export rootme ; \ - (cd ./prms; \ + (cd ./gnats; \ $(MAKE) $(FLAGS_TO_PASS) all) ; \ else \ true ; \ fi -install-prms: force - @if [ -f ./prms/Makefile ] ; then \ +install-gnats: force + @if [ -f ./gnats/Makefile ] ; then \ rootme=`pwd` ; export rootme ; \ - (cd ./prms; \ + (cd ./gnats; \ $(MAKE) $(FLAGS_TO_PASS) install) ; \ else \ true ; \ |