1992-03-06 12:54:37 +01:00
|
|
|
# @(#)Makefile 5.17 (Berkeley) 5/11/90
|
|
|
|
|
1993-03-23 00:25:27 +01:00
|
|
|
srcdir = .
|
1992-06-04 09:34:23 +02:00
|
|
|
|
1992-07-13 04:24:24 +02:00
|
|
|
prefix = /usr/local
|
1992-06-04 21:10:49 +02:00
|
|
|
|
1992-07-13 04:24:24 +02:00
|
|
|
program_prefix =
|
|
|
|
exec_prefix = $(prefix)
|
|
|
|
bindir = $(exec_prefix)/bin
|
|
|
|
libdir = $(exec_prefix)/lib
|
1992-06-04 21:10:49 +02:00
|
|
|
tooldir = $(libdir)
|
1992-07-13 04:24:24 +02:00
|
|
|
mandir = $(prefix)/man
|
|
|
|
man1dir = $(mandir)/man1
|
1992-06-04 21:10:49 +02:00
|
|
|
|
1993-02-03 23:03:33 +01:00
|
|
|
infodir = $(prefix)/info
|
1992-06-04 21:10:49 +02:00
|
|
|
datadir = $(prefix)/lib
|
|
|
|
|
1992-07-13 04:24:24 +02:00
|
|
|
INSTALL = install -c
|
1992-06-04 21:10:49 +02:00
|
|
|
INSTALL_PROGRAM = $(INSTALL)
|
1992-07-13 04:24:24 +02:00
|
|
|
INSTALL_DATA = $(INSTALL)
|
1993-02-03 23:03:33 +01:00
|
|
|
MAKEINFO = makeinfo
|
|
|
|
TEX = tex
|
|
|
|
TEXINDEX = texindex
|
|
|
|
|
|
|
|
# this is the directory we look in to find Texinfo
|
|
|
|
texidir = $(srcdir)/../texinfo
|
1992-06-04 21:10:49 +02:00
|
|
|
|
1992-03-06 12:54:37 +01:00
|
|
|
#### host and target dependent Makefile fragments come in here.
|
|
|
|
###
|
1991-07-23 21:09:22 +02:00
|
|
|
|
|
|
|
PROG= gprof
|
1992-08-13 00:16:34 +02:00
|
|
|
SRCS= gprof.c arcs.c dfn.c lookup.c $(MACHINE).c hertz.c \
|
1991-07-23 21:09:22 +02:00
|
|
|
printgprof.c printlist.c
|
|
|
|
LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a
|
|
|
|
|
1992-10-06 01:57:18 +01:00
|
|
|
OBJS= gprof.o arcs.o dfn.o lookup.o $(MACHINE).o hertz.o \
|
|
|
|
printgprof.o printlist.o \
|
|
|
|
flat_bl.o bsd_callg_bl.o fsf_callg_bl.o
|
|
|
|
|
|
|
|
# Files that can be generated, but should be included in distribution.
|
|
|
|
DISTSTUFF = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
|
1991-07-23 21:09:22 +02:00
|
|
|
|
1992-06-04 09:34:23 +02:00
|
|
|
CFLAGS=
|
1992-06-02 19:22:47 +02:00
|
|
|
.c.o:
|
1992-07-20 02:48:14 +02:00
|
|
|
$(CC) -c $(CFLAGS) -I$(srcdir) -I$(srcdir)/../include -DMACHINE_H=\"$(MACHINE).h\" $(TCFLAGS) $(HCFLAGS) $<
|
1992-03-06 12:54:37 +01:00
|
|
|
|
1992-10-06 01:57:18 +01:00
|
|
|
all: diststuff $(PROG)
|
1991-07-23 21:09:22 +02:00
|
|
|
|
1993-03-23 09:03:44 +01:00
|
|
|
.PHONY: check installcheck info install-info
|
1992-10-06 01:57:18 +01:00
|
|
|
.SUFFIXES: .m
|
|
|
|
|
|
|
|
.m.c:
|
|
|
|
awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \
|
|
|
|
FUNCTION=`(echo $*|sed -e 's/_bl//')`_blurb \
|
|
|
|
FILE=$*.m $(srcdir)/$*.m
|
|
|
|
|
|
|
|
diststuff: $(DISTSTUFF)
|
1993-02-03 23:03:33 +01:00
|
|
|
|
|
|
|
gprof.info: gprof.texi
|
|
|
|
$(MAKEINFO) -o gprof.info $(srcdir)/gprof.texi
|
|
|
|
|
|
|
|
gprof.dvi: gprof.texi
|
|
|
|
TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) $(srcdir)/gprof.texi
|
|
|
|
$(TEXINDEX) gprof.??
|
|
|
|
TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) $(srcdir)/gprof.texi
|
|
|
|
|
|
|
|
info: gprof.info
|
|
|
|
|
|
|
|
dvi: gprof.dvi
|
1992-10-06 01:57:18 +01:00
|
|
|
|
1992-03-08 10:11:19 +01:00
|
|
|
check:
|
1993-03-23 09:03:44 +01:00
|
|
|
installcheck:
|
1992-03-08 10:11:19 +01:00
|
|
|
|
1993-02-03 23:03:33 +01:00
|
|
|
install-info: info
|
|
|
|
-parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
|
|
|
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
|
|
|
-if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
|
|
|
|
for i in *.info* ; do \
|
|
|
|
$(INSTALL_DATA) $$i $(infodir)/$$i ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
install: all install-info
|
1992-08-19 23:38:00 +02:00
|
|
|
-parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
|
|
|
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
|
|
|
-if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
|
|
|
|
-parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
|
|
|
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
|
|
|
-if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
|
1993-01-06 10:00:02 +01:00
|
|
|
$(INSTALL_PROGRAM) $(PROG) $(bindir)/$(PROG)
|
1992-07-20 02:48:14 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/gprof.1 $(man1dir)/gprof.1
|
1991-07-23 21:09:22 +02:00
|
|
|
|
|
|
|
$(PROG): $(OBJS)
|
|
|
|
$(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)
|
1992-03-06 12:54:37 +01:00
|
|
|
|
1992-10-06 01:57:18 +01:00
|
|
|
mostlyclean:
|
1993-02-03 23:03:33 +01:00
|
|
|
-rm -f *.o core gprof nohup.out gprof.info* \
|
|
|
|
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
|
1992-10-06 01:57:18 +01:00
|
|
|
clean: mostlyclean
|
|
|
|
-rm -f gprof
|
|
|
|
distclean: clean
|
|
|
|
-rm -f config.status Makefile
|
|
|
|
realclean: distclean
|
|
|
|
-rm -f $(DISTSTUFF)
|
1992-07-13 04:24:24 +02:00
|
|
|
|
|
|
|
Makefile : Makefile.in
|
|
|
|
sh config.status
|
|
|
|
|
|
|
|
|
1992-06-04 09:34:23 +02:00
|
|
|
# These get around a bug in Sun Make in SunOS 4.1.1 and Solaris 2
|
|
|
|
gprof.o: gprof.c
|
|
|
|
arcs.o: arcs.c
|
|
|
|
dfn.o: dfn.c
|
|
|
|
lookup.o: lookup.c
|
1992-07-20 02:48:14 +02:00
|
|
|
$(MACHINE).o: $(MACHINE).c
|
1992-06-04 09:34:23 +02:00
|
|
|
hertz.o: hertz.c
|
|
|
|
printgprof.o: printgprof.c
|
|
|
|
printlist.o: printlist.c
|
1992-10-06 01:57:18 +01:00
|
|
|
flat_bl.o: flat_bl.c
|
|
|
|
bsd_callg_bl.o: bsd_callg_bl.c
|
|
|
|
fsf_callg_bl.o: fsf_callg_bl.c
|