diff options
author | Sean Eric Fagan <sef@cygnus> | 1991-07-18 20:19:17 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1991-07-18 20:19:17 +0000 |
commit | 3d6c6501891ab37f334c209e065ad0e7a2cd5a74 (patch) | |
tree | 66618297396822943ef644edb76c0c240a76407a /gprof/Makefile | |
parent | 1b2d0bf260776889b7cc5a5fe0cd015856371139 (diff) | |
download | gdb-3d6c6501891ab37f334c209e065ad0e7a2cd5a74.zip gdb-3d6c6501891ab37f334c209e065ad0e7a2cd5a74.tar.gz gdb-3d6c6501891ab37f334c209e065ad0e7a2cd5a74.tar.bz2 |
Initial revision
Diffstat (limited to 'gprof/Makefile')
-rwxr-xr-x | gprof/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gprof/Makefile b/gprof/Makefile new file mode 100755 index 0000000..9c14d68 --- /dev/null +++ b/gprof/Makefile @@ -0,0 +1,23 @@ +# @(#)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 +#CFLAGS+=-I${.CURDIR}/../../lib/csu.${MACHINE} +CFLAGS= -I. -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) |