# Make file for exercising Make_time in those applications 
# in the working version of the code that have it.

# (You probably don't need to be so thorough.)
# You can also just run Make_time for one application
# See the instructions in Make_time_template for timing your
# favorite application.
# C.D. 8/30/02

DIRS = \
  ks_imp_dyn \
  clover_invert2

all:
	for dir in ${DIRS};\
	do\
	    (echo "Timing $$dir"; cd $$dir; make -kf Make_time time 2>&1 > maketime.log )\
	done
