# Makefile for efficiency tests # # TgtDir = Test1 test: prog @echo "Beginning test" @echo @time $(TgtDir)/test | tee $(TgtDir)/results @echo @echo "End of test, see $(TgtDir)/results" prog: $(TgtDir)/test $(TgtDir)/test: test.hs # ghc -prof -auto-all -ddump-stg -ddump-simpl -hidir $(TgtDir) -odir $(TgtDir) --make -o $@ $< ghc -hidir $(TgtDir) -odir $(TgtDir) --make -o $@ $< clean: rm $(TgtDir)/*.o $(TgtDir)/*.hi $(TgtDir)/test