* Makefile.in (DISTSTUFF): Rename to GEN_FILES, to avoid confusion.

(all):  Depend on $(GEN_FILES), not diststuff (which also depends
	on info).
This commit is contained in:
Per Bothner 1995-11-01 20:50:55 +00:00
parent f8c814d644
commit c3294c2e78
2 changed files with 10 additions and 4 deletions

View File

@ -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>.

View File

@ -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