Fixed some serious bugs in the configuration of gprof. It now works with
[deliverable/binutils-gdb.git] / gprof / Makefile.in
CommitLineData
89a471fe
SEF
1# @(#)Makefile 5.17 (Berkeley) 5/11/90
2
3#### host and target dependent Makefile fragments come in here.
4###
c98f0ae5 5
c98f0ae5
SEF
6PROG= gprof
7SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
8 printgprof.c printlist.c
9LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a
10
c98f0ae5
SEF
11OBJS= gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
12 printgprof.o printlist.o
13
89a471fe
SEF
14CFLAGS= -I. -I../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS}
15
c98f0ae5
SEF
16all: ${PROG}
17
18beforeinstall:
19 install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
20 ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
21 ${DESTDIR}/usr/share/misc
22
c98f0ae5
SEF
23$(PROG): $(OBJS)
24 $(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)
89a471fe
SEF
25
26clean:
27 -rm -f $(OBJS) core gprof nohup.out
This page took 0.167121 seconds and 4 git commands to generate.