diff options
author | Fred Fish <fnf@specifix.com> | 1993-01-28 05:47:42 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-01-28 05:47:42 +0000 |
commit | 2fcc38b81f6cc89e87e44f62e87bcb3b4cb86549 (patch) | |
tree | a5e197d7b9f47f7a190c00d7f5d69344e52c7fd6 /gdb/Makefile.in | |
parent | 3a8d4a5faf054469d3309dfc393c6ad6ed9a9177 (diff) | |
download | gdb-2fcc38b81f6cc89e87e44f62e87bcb3b4cb86549.zip gdb-2fcc38b81f6cc89e87e44f62e87bcb3b4cb86549.tar.gz gdb-2fcc38b81f6cc89e87e44f62e87bcb3b4cb86549.tar.bz2 |
* expression.h (BINOP_CONCAT): Document use for self concatenation
an integral number of times.
* language.c (binop_type_check): Extend BINOP_CONCAT for self
concatenation case.
* valarith.c (value_concat): Rewrite to support self
concatenation an integral number of times.
**** start-sanitize-chill ****
* Makefile.in (ch-exp.tab.c): Change "expect" message.
* ch-exp.y (FIXME's): Make all FIXME tokens distinct, to
eliminate hundreds of spurious shift/reduce and reduce/reduce
conflicts that mask the 5 real ones.
* ch-exp.y (STRING, CONSTANT, SC): Remove unused tokens.
* ch-exp.y (integer_literal_expression): Remove production,
no longer used.
**** end-sanitize-chill ****
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ce1bead..b120b68 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -179,6 +179,8 @@ LINTFLAGS= -I${BFD_DIR} # End of host and target-dependent makefile fragments FLAGS_TO_PASS = \ + "prefix=$(prefix)" \ + "exec_prefix=$(exec_prefix)" \ "against=$(against)" \ "AR=$(AR)" \ "AR_FLAGS=$(AR_FLAGS)" \ @@ -333,14 +335,14 @@ YYOBJ = c-exp.tab.o m2-exp.tab.o ch-exp.tab.o ${CC} -c ${INTERNAL_CFLAGS} $< all: gdb - $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + $(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=$(SUBDIRS)" subdir_do check: info: force - $(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + $(MAKE) $(FLAGS_TO_PASS) DO=info "DODIRS=$(SUBDIRS)" subdir_do install-info: force - $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + $(MAKE) $(FLAGS_TO_PASS) DO=install-info "DODIRS=$(SUBDIRS)" subdir_do clean-info: force - $(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + $(MAKE) $(FLAGS_TO_PASS) DO=clean-info "DODIRS=$(SUBDIRS)" subdir_do gdb.z:gdb.1 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t @@ -358,7 +360,7 @@ install: gdb $(INSTALL_PROGRAM) gdb $(bindir)/$$n; \ $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$n.1 $(M_INSTALL) - $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + $(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do init.c: $(srcdir)/munch $(OBS) $(TSOBS) $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c @@ -619,19 +621,19 @@ clean: rm -f init.c version.c rm -f gdb core gdb.tar gdb.tar.Z make.log rm -f gdb[0-9] - @$(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do distclean: clean c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS rm -f tm.h xm.h config.status rm -f y.output yacc.acts yacc.tmp rm -f ${TESTS} Makefile depend - @$(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do realclean: clean rm -f c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS rm -f tm.h xm.h config.status rm -f Makefile depend - @$(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) + @$(MAKE) $(FLAGS_TO_PASS) DO=realclean "DODIRS=$(SUBDIRS)" subdir_do STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb @@ -704,7 +706,7 @@ c-exp.tab.c: $(srcdir)/c-exp.y Makefile # else. ch-exp.tab.o: ch-exp.tab.c ch-exp.tab.c: $(srcdir)/ch-exp.y Makefile - @echo 'Expect rules never reduced, and lots of reduce/reduce conflicts.' + @echo 'Expect rules never reduced and {shift,reduce}/reduce conflicts.' ${YACC} $(srcdir)/ch-exp.y -sed -e '/extern.*malloc/d' \ -e '/extern.*realloc/d' \ @@ -761,6 +763,9 @@ xcoffread.o: ${srcdir}/xcoffread.c xcoffexec.o: ${srcdir}/xcoffexec.c ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffexec.c +paread.o: ${srcdir}/paread.c + ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/paread.c + # Drag in the files that are in another directory. xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c |