aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorMark Eichin <eichin@cygnus>1992-06-02 17:22:47 +0000
committerMark Eichin <eichin@cygnus>1992-06-02 17:22:47 +0000
commit9138a2e2f6bdddcc643a3ed208093d5cc8a7023d (patch)
treea7461bc46162614482281ef2cffae2bc64073eb5 /gprof
parent50a39795e21751fccaf75cf4e9df1378e5fcba62 (diff)
downloadgdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.zip
gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.tar.gz
gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.tar.bz2
Makefile.in: .c.o rule needed, default one (under solaris) ignores CFLAGS
Makefile: it shouldn't be under cvs; given that it is, fix it too arcs.c: fprintf used where printf should have been. lookup.c: misdeclared calloc; use a cast instead.
Diffstat (limited to 'gprof')
-rwxr-xr-xgprof/Makefile33
-rw-r--r--gprof/Makefile.in2
-rw-r--r--gprof/arcs.c3
-rw-r--r--gprof/lookup.c2
4 files changed, 31 insertions, 9 deletions
diff --git a/gprof/Makefile b/gprof/Makefile
index b233afb..30d13f0 100755
--- a/gprof/Makefile
+++ b/gprof/Makefile
@@ -1,25 +1,46 @@
+# This file was generated automatically by configure. Do not edit.
+VPATH = .
+links =
+host_alias = sparc-sun-solaris
+host_cpu = sparc
+host_vendor = sun
+host_os = solaris
+target_alias = sparc-sun-solaris
+target_cpu = sparc
+target_vendor = sun
+target_os = solaris
+target_makefile_frag = ./config/mt-sparc
+ALL=all.internal
# @(#)Makefile 5.17 (Berkeley) 5/11/90
-CC= gcc
-MACHINE= sparc
+#### host and target dependent Makefile fragments come in here.
+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}
+.c.o:
+ $(CC) -c $(CFLAGS) $<
+
all: ${PROG}
+.PHONY: check
+check:
+
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)
+
+clean:
+ -rm -f $(OBJS) core gprof nohup.out
diff --git a/gprof/Makefile.in b/gprof/Makefile.in
index 3b89353..f13b34f 100644
--- a/gprof/Makefile.in
+++ b/gprof/Makefile.in
@@ -12,6 +12,8 @@ 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}
+.c.o:
+ $(CC) -c $(CFLAGS) $<
all: ${PROG}
diff --git a/gprof/arcs.c b/gprof/arcs.c
index 8cb6dad..9061145 100644
--- a/gprof/arcs.c
+++ b/gprof/arcs.c
@@ -31,7 +31,6 @@ addarc( parentp , childp , count )
nltype *childp;
long count;
{
- arctype *calloc();
arctype *arcp;
# ifdef DEBUG
@@ -54,7 +53,7 @@ addarc( parentp , childp , count )
arcp -> arc_count += count;
return;
}
- arcp = calloc( 1 , sizeof *arcp );
+ arcp = (arctype *) calloc( 1 , sizeof *arcp );
arcp -> arc_parentp = parentp;
arcp -> arc_childp = childp;
arcp -> arc_count = count;
diff --git a/gprof/lookup.c b/gprof/lookup.c
index 405f320..d08a162 100644
--- a/gprof/lookup.c
+++ b/gprof/lookup.c
@@ -71,7 +71,7 @@ arclookup( parentp , childp )
arctype *arcp;
if ( parentp == 0 || childp == 0 ) {
- fprintf( "[arclookup] parentp == 0 || childp == 0\n" );
+ printf( "[arclookup] parentp == 0 || childp == 0\n" );
return 0;
}
# ifdef DEBUG