mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-20 11:48:25 -06:00
Note that due to a design constraint in the transport solver, namely that inflowing fluid must consist of only water (possibly with polymer), and no oil, the program fails unless the comment on lines 186-- is heeded.
26 lines
506 B
Makefile
26 lines
506 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
$(BOOST_CPPFLAGS)
|
|
|
|
LDFLAGS = $(BOOST_LDFLAGS)
|
|
|
|
LDADD = $(top_builddir)/libopmpolymer.la \
|
|
$(BOOST_FILESYSTEM_LIB) \
|
|
$(BOOST_SYSTEM_LIB)
|
|
|
|
|
|
noinst_PROGRAMS = \
|
|
polymer_reorder \
|
|
sim_poly2p_incomp_reorder \
|
|
test_singlecellsolves
|
|
|
|
polymer_reorder_SOURCES = \
|
|
polymer_reorder.cpp
|
|
|
|
sim_poly2p_incomp_reorder_SOURCES = \
|
|
sim_poly2p_incomp_reorder.cpp
|
|
|
|
test_singlecellsolves_SOURCES = \
|
|
test_singlecellsolves.cpp
|
|
|