aboutsummaryrefslogtreecommitdiff
path: root/gprof/Makefile.in
diff options
context:
space:
mode:
authorSean Eric Fagan <sef@cygnus>1991-07-23 19:09:22 +0000
committerSean Eric Fagan <sef@cygnus>1991-07-23 19:09:22 +0000
commitc98f0ae5a8150dda82e80132991df51beadf137a (patch)
tree3e04d372294cb32615966741994037d35b047e50 /gprof/Makefile.in
parentca70eaefa237407a87725420fcfd04c414f4b8ba (diff)
downloadgdb-c98f0ae5a8150dda82e80132991df51beadf137a.zip
gdb-c98f0ae5a8150dda82e80132991df51beadf137a.tar.gz
gdb-c98f0ae5a8150dda82e80132991df51beadf137a.tar.bz2
Initial revision
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r--gprof/Makefile.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in
new file mode 100644
index 0000000..b233afb
--- /dev/null
+++ b/gprof/Makefile.in
@@ -0,0 +1,25 @@
+# @(#)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)