26 lines
656 B
Makefile
26 lines
656 B
Makefile
# @(#)Makefile 5.17 (Berkeley) 5/11/90
|
|
|
|
CC= gcc
|
|
MACHINE= sparc
|
|
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
|
|
|
|
#CFLAGS+=-I${.CURDIR}/../../lib/csu.${MACHINE}
|
|
CFLAGS= -I. -I../include -O -g -DMACHINE_H=\"${MACHINE}.h\"
|
|
|
|
OBJS= gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
|
|
printgprof.o printlist.o
|
|
|
|
all: ${PROG}
|
|
|
|
beforeinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
|
|
${DESTDIR}/usr/share/misc
|
|
|
|
#.include <bsd.prog.mk>
|
|
$(PROG): $(OBJS)
|
|
$(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)
|