aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1995-11-01 20:50:55 +0000
committerPer Bothner <per@bothner.com>1995-11-01 20:50:55 +0000
commitc3294c2e78d0b6b947c4d4da35d799c31447b75a (patch)
tree3bb064e491512f50f48230ab19e149bd507e5b15
parentf8c814d64459e0456af4ec3333ef73fa57ee0b16 (diff)
downloadfsf-binutils-gdb-c3294c2e78d0b6b947c4d4da35d799c31447b75a.zip
fsf-binutils-gdb-c3294c2e78d0b6b947c4d4da35d799c31447b75a.tar.gz
fsf-binutils-gdb-c3294c2e78d0b6b947c4d4da35d799c31447b75a.tar.bz2
* Makefile.in (DISTSTUFF): Rename to GEN_FILES, to avoid confusion.
(all): Depend on $(GEN_FILES), not diststuff (which also depends on info).
-rw-r--r--gprof/ChangeLog6
-rw-r--r--gprof/Makefile.in8
2 files changed, 10 insertions, 4 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 0ff841e..0159223 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,9 @@
+Wed Nov 1 12:51:21 1995 Per Bothner <bothner@kalessin.cygnus.com>
+
+ * Makefile.in (DISTSTUFF): Rename to GEN_FILES, to avoid confusion.
+ (all): Depend on $(GEN_FILES), not diststuff (which also depends
+ on info).
+
Wed Nov 1 15:23:15 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <manfred@lts.sel.alcatel.de>
* sym_ids.c: Include <ctype.h>.
diff --git a/gprof/Makefile.in b/gprof/Makefile.in
index 81625bd..387a2cc 100644
--- a/gprof/Makefile.in
+++ b/gprof/Makefile.in
@@ -48,14 +48,14 @@ OBJS= $(MY_TARGET).o basic_blocks.o bsd_callg_bl.o call_graph.o \
sym_ids.o utils.o
# Files that can be generated, but should be included in distribution.
-DISTSTUFF = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
+GEN_FILES = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
CFLAGS=-g -DDEBUG
LDFLAGS=
.c.o:
$(CC) -c $(CFLAGS) -I. -I$(srcdir) -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd -DMACHINE_H=\"$(MY_TARGET).h\" $(TCFLAGS) $(HCFLAGS) $<
-all: diststuff $(PROG)
+all: $(GEN_FILES) $(PROG)
.PHONY: check installcheck info install-info
.SUFFIXES: .m
@@ -65,7 +65,7 @@ all: diststuff $(PROG)
FUNCTION=`(echo $*|sed -e 's/_bl//')`_blurb \
FILE=$*.m $(srcdir)/$*.m
-diststuff: $(DISTSTUFF) info
+diststuff: $(GEN_FILES) info
gprof.info: gprof.texi
$(MAKEINFO) -o gprof.info $(srcdir)/gprof.texi
@@ -109,7 +109,7 @@ clean: mostlyclean
distclean: clean
-rm -f config.cache config.log config.status Makefile
maintainer-clean realclean: distclean
- -rm -f $(DISTSTUFF) *.info*
+ -rm -f $(GEN_FILES) *.info*
Makefile: Makefile.in config.status
$(SHELL) config.status