all: calcpi
calcpi: calcpi.f90 Makefile
	ifort -g -fast -o $@ $@.f90
clean:
	rm -f calcpi
.PHONY: all clean
