mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
16 lines
507 B
Makefile
16 lines
507 B
Makefile
# programs just to build when "make check" is used
|
|
check_PROGRAMS = tutorial_decoupled tutorial_coupled
|
|
|
|
noinst_HEADERS= *.hh
|
|
EXTRA_DIST = CMakeLists.txt *.input
|
|
|
|
tutorial_decoupleddir = $(datadir)/dumux/tutorial
|
|
tutorial_decoupled_SOURCES = tutorial_decoupled.cc
|
|
tutorial_decoupled_DATA = $(tutorial_decoupled_SOURCES)
|
|
|
|
tutorial_coupleddir = $(datadir)/dumux/tutorial
|
|
tutorial_coupled_SOURCES = tutorial_coupled.cc
|
|
tutorial_coupled_DATA = $(tutorial_coupled_SOURCES)
|
|
|
|
include $(top_srcdir)/am/global-rules
|