#
# $Header: Makefile,v 1.1 86/03/12 15:00:35 root Exp $
#
# $Log:	Makefile,v $
# Revision 1.1  86/03/12  15:00:35  root
# Initial revision
# 
#
#	@(#)Makefile	4.1 (Berkeley) 6/2/83
#
# If you don't want to plot, take out the -Dplot and the ref. to plot.a
PLOT = -lplot -Dplot
CFLAGS=-O 
prof:	prof.c
	$(CC) $(CFLAGS) -o prof prof.c $(PLOT)

install:
	install -s prof $(DESTDIR)/usr/bin

clean :
	rm -f *.o prof *.out rslts core
