# Copyright (C) 1998  Takashi Chikayama and Haruhiko Usa

RESULTTIME = result.time
RESULTHEAP = result.heap
TAIL       =
LATEX      = jlatex

all:	plot
plot:
	./plot.time $(RESULTTIME) $(TAIL)
	./plot.heap $(RESULTHEAP) $(TAIL)
	./plot.tab  $(RESULTTIME) $(RESULTHEAP) $(TAIL)
	$(LATEX) Plot

clean:
	rm -f Count* Plot* Tab* Time* result.*.prof *~

distclean: clean
	rm -f result.time result.heap $(RESULTTIME) $(RESULTHEAP)

