diff options
author | Fred Fish <fnf@specifix.com> | 1993-05-09 14:26:25 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-05-09 14:26:25 +0000 |
commit | 67d2bd1a4bd375b879abd505af66977245604f05 (patch) | |
tree | 20801787d1cb9eb8a4b8d9d5948319e0028806d4 /gdb/Makefile.in | |
parent | 64c5ac4f6d386086532df74bd116a782f04c49c5 (diff) | |
download | gdb-67d2bd1a4bd375b879abd505af66977245604f05.zip gdb-67d2bd1a4bd375b879abd505af66977245604f05.tar.gz gdb-67d2bd1a4bd375b879abd505af66977245604f05.tar.bz2 |
* Makefile.in (VERSION): Bump to 4.8.6.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 37b60d5..12b92cc 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -166,7 +166,7 @@ ADD_FILES = ${REGEX} ${ALLOCA} ${XM_ADD_FILES} ${TM_ADD_FILES} \ ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES} \ ${NAT_ADD_FILES} -VERSION = 4.8.5 +VERSION = 4.8.6 DIST=gdb LINT=/usr/5bin/lint @@ -565,16 +565,18 @@ depend: $(SOURCES) Makefile.in -e 's; ./tm.h; tm.h config.status;g' \ -e 's; ./nm.h; nm.h config.status;g' \ >depend.tm3; -# OK, get your sed manual out. This script makes all the rules in +# OK, get your sed manual out. This script makes the rules in # depend explicitly state the rule, rather than relying on VPATH # or a .c.o implicit rule. This is needed for Sun make, and should -# be portable to any make worthy of the name. I suspect that we no -# longer need to set VPATH. +# be portable to any make worthy of the name. +# There is one exception: the *.tab.c files can exist either in srcdir +# or in ., so make sure not to use an explicit rule for them. <depend.tm3 sed \ -e '/:/h' \ -e '/\\$$/b end' \ -e 'p' \ -e 'g' \ + -e '/:.*\.tab\.c/d' \ -e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \ -e ': end' \ >depend.tm4; |