1example_name  = systems_of_equations_ex8
2check_SCRIPTS = run.sh
3install_dir   = $(examples_install_path)/systems_of_equations/ex8
4data          = systems_of_equations_ex8.C run.sh systems_of_equations_ex8.in systems_of_equations_ex8.exo linear_elasticity_with_contact.h linear_elasticity_with_contact.C
5sources       = $(data) run.sh
6
7CLEANFILES = solution.exo
8# also need to link files for VPATH builds
9if LIBMESH_VPATH_BUILD
10  BUILT_SOURCES = .linkstamp
11.linkstamp:
12	-rm -f systems_of_equations_ex8.in && $(LN_S) -f $(srcdir)/systems_of_equations_ex8.in .
13	-rm -f systems_of_equations_ex8.exo && $(LN_S) -f $(srcdir)/systems_of_equations_ex8.exo .
14	$(AM_V_GEN)touch .linkstamp
15
16  CLEANFILES += systems_of_equations_ex8.in systems_of_equations_ex8.exo .linkstamp
17endif
18
19##############################################
20# include common example environment
21include $(top_srcdir)/examples/Make.common
22