aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorSean Eric Fagan <sef@cygnus>1992-03-06 11:54:37 +0000
committerSean Eric Fagan <sef@cygnus>1992-03-06 11:54:37 +0000
commit89a471fe5705c5da873970624f04c807f09ce648 (patch)
treeb7ccad72541b0996eb13a0283a5483eff0684fe5 /gprof
parent169fff49079d7ea5b23fd39f1157b1476df620f3 (diff)
downloadgdb-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')
-rw-r--r--gprof/Makefile.in16
-rw-r--r--gprof/configure.in1
2 files changed, 10 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
diff --git a/gprof/configure.in b/gprof/configure.in
index f634bae..5b6f44d 100644
--- a/gprof/configure.in
+++ b/gprof/configure.in
@@ -21,6 +21,7 @@ fi
case "${target_cpu}" in
sparc*) my_target=sparc ;;
i386*) my_target=i386 ;;
+*) my_target=dummy ;;
esac
target_makefile_frag=config/mt-${my_target}