#
# @(#)Makefile 1.6 88/02/08 SMI; from UCB 4.1 06/02/83
#
# If you don't want to plot, take out the -Dplot and the ref. to plot.a
PLOT = -lplot -Dplot
CFLAGS=-g

all: prof

prof:	prof.o
	$(CC) -o prof prof.o $(PLOT)

prof.o: prof.c
	cc -c $(CFLAGS) $(PLOT) prof.c

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

clean :
	rm -f *.o prof mon.out.*
