#
# Copyright (c) 1987 Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms are permitted
# provided that the above copyright notice and this paragraph are
# duplicated in all such forms and that any documentation,
# advertising materials, and other materials related to such
# distribution and use acknowledge that the software was developed
# by the University of California, Berkeley.  The name of the
# University may not be used to endorse or promote products derived
# from this software without specific prior written permission.
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
#	@(#)Makefile	5.12 (Berkeley) 6/29/88
#
MACHINE= minix
CFLAGS=	-O -D$(MACHINE)=1 -f
LIBC=	/usr/lib/libc.a
HDRS=	gprof.h ${MACHINE}.h
SRCS=	gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
	printgprof.c printlist.c
OBJS=	gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
	printgprof.o printlist.o

all: gprof

gprof: ${OBJS} ${LIBC}
	${CC} -o $@ ${CFLAGS} ${OBJS} -lm

clean: FRC
	rm -f ${OBJS} core gprof

depend: FRC
	mkdep ${CFLAGS} ${SRCS}

install: FRC
	install -s -o bin -g bin -m 755 gprof ${DESTDIR}/usr/ucb/gprof
	install -c -o bin -g bin -m 444 gprof.flat ${DESTDIR}/usr/lib
	install -c -o bin -g bin -m 444 gprof.callg ${DESTDIR}/usr/lib

lint: FRC
	lint ${CFLAGS} ${SRCS}

tags: FRC
	ctags ${SRCS}

FRC:

# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.

gprof.o:	gprof.c gprof.h gcrt0.h minix.h
arcs.o:		arcs.c gprof.h gcrt0.h minix.h
dfn.o:		dfn.c gprof.h gcrt0.h minix.h
lookup.o:	lookup.c gprof.h gcrt0.h minix.h
hertz.o:	hertz.c
printgprof.o:	printgprof.c gprof.h gcrt0.h minix.h
printlist.o:	printlist.c gprof.h gcrt0.h minix.h
minix.o:	minix.c gprof.h gcrt0.h minix.h

# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
