* Makefile.in (VERSION): Bump to 4.13.2.

This commit is contained in:
Stan Shebs 1995-02-02 22:02:20 +00:00
parent b003a2d9ee
commit 2d1444416e
2 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,15 @@
Thu Feb 2 13:58:40 1995 Stan Shebs <shebs@andros.cygnus.com>
* Makefile.in (VERSION): Bump to 4.13.2.
Thu Feb 2 07:27:56 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
Fix compiler warnings:
* remote-e7000.c (printf_e7000debug): Rename to puts_e7000debug
and have the caller do the sprintf. Saves us from varargs hell.
(normal): Define before use.
* remote-e7000.c: Reindent a few things.
Wed Feb 1 21:16:42 1995 Per Bothner <bothner@kalessin.cygnus.com>
* f-typeprint.c (f_type_print_varspec_suffix): Print array index

View File

@ -194,7 +194,7 @@ CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(BFD) $(READLINE) $(OPCODES) \
ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
VERSION = 4.13.1
VERSION = 4.13.2
DIST=gdb
LINT=/usr/5bin/lint
@ -291,7 +291,13 @@ CHILL_FOR_TARGET = ` \
t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
fi; \
fi`
CHILL_LIB = -lchill
CHILL_LIB = ` \
if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
$${rootme}/../gcc/ch/runtime/libchill.a; \
else \
echo -lchill; \
fi`
# The use of $$(x_FOR_TARGET) reduces the command line length by not
# duplicating the lengthy definition.