FFLAGS=-O2 -fpp
fctimes: fcparmig nothing
	time ./fcparmig >> fctimes 2>&1
fcparmig: t15mig.o triply.o setprs.o
	fc $(FFLAGS) t15mig.o triply.o setprs.o -o fcparmig
astimes: asparmig nothing
	time ./asparmig >> astimes 2>&1
asparmig: t15mig.o triply.handcoded.o setprs.o
	fc $(FFLAGS) t15mig.o triply.handcoded.o setprs.o -o asparmig
nothing:
	echo hi > /dev/null
clean:
	rm -f t15mig.o triply.o setprs.o triply.handcoded.o
	rm -f asparmig fcparmig nothing fctimes astimes
