diff options
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) |