Skip to content
Snippets Groups Projects
Commit a028a2d7 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

added missing Makefiles and fixed existing ones

parent 069cfe59
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,7 @@ AC_CONFIG_FILES([
dune/detailed-discretizations/mapper/continuous/Makefile
examples/Makefile
examples/elliptic_finite_element/Makefile
examples/elliptic_discontinuous_galerkin/Makefile
m4/Makefile
dune-detailed-discretizations.pc
])
......
evaluation_local_binary_includedir = $(includedir)/dune/detailed-discretizations/evaluation/local/binary
evaluation_local_binary_include_HEADERS = elliptic.hh ipdgfluxes.hh
evaluation_local_binary_include_HEADERS = elliptic.hh
include $(top_srcdir)/am/global-rules
# $Id$
SUBDIRS = elliptic_finite_element
SUBDIRS = elliptic_finite_element elliptic_discontinuous_galerkin
if BUILD_DOCS
# TODO: set up documentation tree automatically
......
GRIDDIM=2
GRIDTYPE=YASPGRID
POLORDER=1
noinst_PROGRAMS = elliptic_discontinuous_galerkin
elliptic_discontinuous_galerkin_SOURCES = main.cc
elliptic_discontinuous_galerkin_CPPFLAGS = $(AM_CPPFLAGS) \
$(DUNEMPICPPFLAGS) \
$(UG_CPPFLAGS) \
$(AMIRAMESH_CPPFLAGS) \
$(ALBERTA_CPPFLAGS) \
$(ALUGRID_CPPFLAGS) -DGRIDDIM=$(GRIDDIM) -D$(GRIDTYPE) -DPOLORDER=$(POLORDER) -Wall -O0 -DDEBUG -funroll-loops -g -ggdb -fno-strict-aliasing -std=c++0x
# The libraries have to be given in reverse order (most basic libraries
# last). Also, due to some misunderstanding, a lot of libraries include the
# -L option in LDFLAGS instead of LIBS -- so we have to include the LDFLAGS
# here as well.
elliptic_discontinuous_galerkin_LDADD = \
$(DUNE_LDFLAGS) $(DUNE_LIBS) \
$(ALUGRID_LDFLAGS) $(ALUGRID_LIBS) \
$(ALBERTA_LDFLAGS) $(ALBERTA_LIBS) \
$(AMIRAMESH_LDFLAGS) $(AMIRAMESH_LIBS) \
$(UG_LDFLAGS) $(UG_LIBS) \
$(DUNEMPILIBS) \
$(LDADD)
elliptic_discontinuous_galerkin_LDFLAGS = $(AM_LDFLAGS) \
$(DUNEMPILDFLAGS) \
$(UG_LDFLAGS) \
$(AMIRAMESH_LDFLAGS) \
$(ALBERTA_LDFLAGS) \
$(ALUGRID_LDFLAGS) \
$(DUNE_LDFLAGS)
include $(top_srcdir)/am/global-rules
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment