diff options
author | Per Bothner <per@bothner.com> | 1995-10-25 20:24:00 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1995-10-25 20:24:00 +0000 |
commit | fc9e78507cb63b9fc64be2b1caa3a90c1e8123c6 (patch) | |
tree | b9263ff45eb48cfb6a4da5ff2a240cb917f615d7 /gprof | |
parent | e78d175068b505e7c5f38bca10f6039834d43fd8 (diff) | |
download | gdb-fc9e78507cb63b9fc64be2b1caa3a90c1e8123c6.zip gdb-fc9e78507cb63b9fc64be2b1caa3a90c1e8123c6.tar.gz gdb-fc9e78507cb63b9fc64be2b1caa3a90c1e8123c6.tar.bz2 |
* Makefile.in (diststuff): Also make info.
(mostlyclean): Don't remove gprof.info*.
(maintainer-clean realclean): Also remove *.info*.
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 6 | ||||
-rw-r--r-- | gprof/Makefile.in | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 9555f13..c57dce4 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,9 @@ +Wed Oct 25 13:24:31 1995 Per Bothner <bothner@kalessin.cygnus.com> + + * Makefile.in (diststuff): Also make info. + (mostlyclean): Don't remove gprof.info*. + (maintainer-clean realclean): Also remove *.info*. + Fri Oct 6 16:25:32 1995 Ken Raeburn <raeburn@cygnus.com> Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 6f34a19..81625bd 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -65,7 +65,7 @@ all: diststuff $(PROG) FUNCTION=`(echo $*|sed -e 's/_bl//')`_blurb \ FILE=$*.m $(srcdir)/$*.m -diststuff: $(DISTSTUFF) +diststuff: $(DISTSTUFF) info gprof.info: gprof.texi $(MAKEINFO) -o gprof.info $(srcdir)/gprof.texi @@ -100,7 +100,7 @@ gprof: $(OBJS) $(LIBS) $(CC) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIBS) mostlyclean: - -rm -f *.o core gprof nohup.out gprof.info* \ + -rm -f *.o core gprof nohup.out \ gprof.cps gprof.fns gprof.log gprof.ps gprof.tps\ gprof.aux gprof.dvi gprof.ky gprof.pg gprof.toc gprof.vr\ gprof.cp gprof.fn gprof.kys gprof.pgs gprof.tp gprof.vrs @@ -109,7 +109,7 @@ clean: mostlyclean distclean: clean -rm -f config.cache config.log config.status Makefile maintainer-clean realclean: distclean - -rm -f $(DISTSTUFF) + -rm -f $(DISTSTUFF) *.info* Makefile: Makefile.in config.status $(SHELL) config.status |