# Makefile to generate performance plots

ifndef top_srcdir
top_srcdir=../..
endif

perfdir=$(top_srcdir)/perf
perfdirs=

all: perf

# run timing and speedup plots for each support dir

perf:
	@echo "Plotting performance tests"
	$(MAKE) -f Makefile.plot-serial

clean:
	rm -rf *.ps serial

test:
	@echo perfdirs = $(perfdirs)

.PHONY:	test
