diff options
author | K. Richard Pixley <rich@cygnus> | 1993-05-01 00:34:05 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-05-01 00:34:05 +0000 |
commit | 0139c441eacffb3af6378aed1888ce842c140593 (patch) | |
tree | 9dbbbd8f37445b37f9b35bc998c0c5033bedb38a /gdb | |
parent | 8317b39ff35ec4b6453e51931a26bed4aba9bfdd (diff) | |
download | gdb-0139c441eacffb3af6378aed1888ce842c140593.zip gdb-0139c441eacffb3af6378aed1888ce842c140593.tar.gz gdb-0139c441eacffb3af6378aed1888ce842c140593.tar.bz2 |
do not echo recursion lines
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/Makefile.in | 12 |
2 files changed, 9 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 64addff..17da53e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ Fri Apr 30 16:50:38 1993 K. Richard Pixley (rich@rtl.cygnus.com) + * Makefile.in (clean-info, install, install-info, info, dvi, + check, all): do not echo recursion lines. + * udip2soc.c (UDIConnect): replace union wait with int. * config/sparc/sun4sol2.mh (XM_CLIBS): add -lsocket which is diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 620cdc1..537ba3d 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -399,17 +399,17 @@ YYOBJ = c-exp.tab.o m2-exp.tab.o ch-exp.tab.o ${CC} -c ${INTERNAL_CFLAGS} $< all: gdb - $(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do + @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do installcheck: check: force - rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=check DODIRS=testsuite subdir_do + @rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=check DODIRS=testsuite subdir_do info dvi: force - $(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do + @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do install-info: force - $(MAKE) $(FLAGS_TO_PASS) DO=install-info "DODIRS=$(SUBDIRS)" subdir_do + @$(MAKE) $(FLAGS_TO_PASS) DO=install-info "DODIRS=$(SUBDIRS)" subdir_do clean-info: force - $(MAKE) $(FLAGS_TO_PASS) DO=clean-info "DODIRS=$(SUBDIRS)" subdir_do + @$(MAKE) $(FLAGS_TO_PASS) DO=clean-info "DODIRS=$(SUBDIRS)" subdir_do gdb.z:gdb.1 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t @@ -427,7 +427,7 @@ install: gdb $(INSTALL_PROGRAM) gdb $(bindir)/$$n; \ $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$n.1 $(M_INSTALL) - $(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do + @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do init.c: $(srcdir)/munch $(OBS) $(TSOBS) $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c |