mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
9388476b43
* make-c-prog.awk: which processes text files into C programs. * printgprof.c (flatprofheader, gprofheader): Call new functions to print blurbs. (printblurb): Remove. * Makefile.in: Infrastructure to build blurbs. * pathnames.h: has been removed. Gprof now has no filename dependencies in it. * gprof.c: Lint. Sat Jul 11 18:07:21 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) * Makefile.in: define man1dir and install the man page Fri Jul 10 21:14:08 1992 david d `zoo' zuhn (zoo@cygnus.com) * Makefile.in: added dummy info and install-info targets
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
# @(#)Makefile 5.17 (Berkeley) 5/11/90
|
|
|
|
srcdir = .
|
|
|
|
prefix = /usr/local
|
|
|
|
program_prefix =
|
|
exec_prefix = $(prefix)
|
|
bindir = $(exec_prefix)/bin
|
|
libdir = $(exec_prefix)/lib
|
|
tooldir = $(libdir)
|
|
mandir = $(prefix)/man
|
|
man1dir = $(mandir)/man1
|
|
|
|
datadir = $(prefix)/lib
|
|
|
|
INSTALL = install -c
|
|
INSTALL_PROGRAM = $(INSTALL)
|
|
INSTALL_DATA = $(INSTALL)
|
|
|
|
#### host and target dependent Makefile fragments come in here.
|
|
###
|
|
|
|
PROG= gprof
|
|
SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
|
|
printgprof.c printlist.c
|
|
LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a
|
|
|
|
OBJS= blurbs.o gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
|
|
printgprof.o printlist.o
|
|
|
|
CFLAGS=
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -I$(srcdir) -I$(srcdir)/../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS} $<
|
|
|
|
all: ${PROG}
|
|
|
|
.PHONY: check info install-info
|
|
check:
|
|
info:
|
|
install-info:
|
|
|
|
install: all
|
|
$(INSTALL_DATA) ${srcdir}/gprof.flat ${DESTDIR}$(datadir)
|
|
$(INSTALL_DATA) ${srcdir}/gprof.callg ${DESTDIR}$(datadir)
|
|
# $(INSTALL_DATA) $(srcdir)/gprof.1 $(man1dir)/gprof.1
|
|
$(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(bindir)
|
|
|
|
$(PROG): $(OBJS)
|
|
$(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)
|
|
|
|
# Make blurbs.c from gprof.callg and gprof.flat
|
|
blurbs.c: ${srcdir}/gprof.callg ${srcdir}/gprof.flat ${srcdir}/make-c-prog.awk
|
|
awk -f ${srcdir}/make-c-prog.awk > ./blurbs.c \
|
|
FUNCTION=flat_blurb ${srcdir}/gprof.flat \
|
|
FUNCTION=callg_blurb ${srcdir}/gprof.callg \
|
|
|
|
clean:
|
|
-rm -f $(OBJS) core gprof nohup.out
|
|
|
|
Makefile : Makefile.in
|
|
sh config.status
|
|
|
|
|
|
# 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
|
|
${MACHINE}.o: ${MACHINE}.c
|
|
hertz.o: hertz.c
|
|
printgprof.o: printgprof.c
|
|
printlist.o: printlist.c
|
|
blurbs.o: blurbs.c
|