diff options
author | Sean Eric Fagan <sef@cygnus> | 1992-03-06 11:54:37 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1992-03-06 11:54:37 +0000 |
commit | 89a471fe5705c5da873970624f04c807f09ce648 (patch) | |
tree | b7ccad72541b0996eb13a0283a5483eff0684fe5 /gprof/Makefile.in | |
parent | 169fff49079d7ea5b23fd39f1157b1476df620f3 (diff) | |
download | gdb-89a471fe5705c5da873970624f04c807f09ce648.zip gdb-89a471fe5705c5da873970624f04c807f09ce648.tar.gz gdb-89a471fe5705c5da873970624f04c807f09ce648.tar.bz2 |
Fixed some serious bugs in the configuration of gprof. It now works with
the latest bfd and company.
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r-- | gprof/Makefile.in | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 1dcfd4d..326be72 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -1,18 +1,18 @@ - # @(#)Makefile 5.17 (Berkeley) 5/11/90 +# @(#)Makefile 5.17 (Berkeley) 5/11/90 + +#### host and target dependent Makefile fragments come in here. +### -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 +CFLAGS= -I. -I../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS} + all: ${PROG} beforeinstall: @@ -20,6 +20,8 @@ beforeinstall: ${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \ ${DESTDIR}/usr/share/misc -#.include <bsd.prog.mk> $(PROG): $(OBJS) $(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS) + +clean: + -rm -f $(OBJS) core gprof nohup.out |