# Navier-Velocity solver with pressure projection
#
run:
	$(F90) -c Velocity.f90 Pressure.f90
	$(LD) -o Velocity Velocity.o $(LIBS)
	$(LD) -o Pressure Pressure.o $(LIBS)
	$(ELMER_HOME)/bin/Solver


clean:
	/bin/rm test.log temp.log mon.out Velocity Velocity.o Pressure Pressure.o so_locations
