INCLUDES = -I/usr/include/mpi -I/usr/include/petsc -I/usr/include/libmesh
LIBS = -lmesh

out.gmv.050: ex10 mesh.xda
	./ex10 -init_timestep 0 -n_timesteps 50

ex10: ex10.o ../ex9/exact_solution.o
	g++ $^ $(LIBS) -o $@

.C.o:
	g++ $< $(INCLUDES) -c -o $@

ex10.C: ex10.C.gz
	gunzip -c $< > $@

clean:
	rm -f *.o ex10 *~ *.gmv.* saved_*
