Skip to content
Snippets Groups Projects
Commit 71df511d authored by Jorrit Fahlke's avatar Jorrit Fahlke
Browse files

Moving refinement into dune/grid/common.

[[Imported from SVN: r174]]
parent f041a127
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
# need automake >= 1.5
AUTOMAKE_OPTIONS = foreign 1.5
SUBDIRS = common fem grid operator quadrature solver lib istl doc bin m4
SUBDIRS = common fem grid operator quadrature solver lib istl doc bin m4 am
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = dune.pc
......
......@@ -22,6 +22,7 @@ AC_CHECK_PROGS([TEX], [latex], [true])
AC_CHECK_PROGS([BIBTEX], [bibtex], [true])
AC_CHECK_PROGS([DVIPDF], [dvipdf], [true])
AC_CHECK_PROGS([DVIPS], [dvips], [true])
DUNE_INKSCAPE
echo
echo Checking for libraries the self-test could use:
......@@ -102,6 +103,7 @@ AC_CONFIG_FILES([Makefile
grid/albertagrid/Makefile
grid/bsgrid/Makefile
grid/common/Makefile
grid/common/refinement/Makefile
grid/onedgrid/Makefile
grid/sgrid/Makefile
grid/test/Makefile
......@@ -126,5 +128,6 @@ AC_CONFIG_FILES([Makefile
solver/pmgsolver/Makefile
doc/Makefile
m4/Makefile
am/Makefile
dune.pc])
AC_OUTPUT
......@@ -10,13 +10,14 @@ WEBDIR = /var/www/dune/doxygen
WEBFILES = html/*.html html/*.css html/*.png doxygen.log
# what files does the doxygen-generated stuff depend on (find-syntax)
DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.css -o -name \*.html
DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.css -o -name \*.html -o -name \*.png
# check dependency ourself to be robust
doxygen-tag: FORCE
set -e; \
if test ! -e doxygen-tag || test x"`find $(top_srcdir) \( $(DEPENDON) \) -a -cnewer doxygen-tag -print`" != x ; then \
echo Running doxygen. This may take a while... ; \
$(DOXYGEN) > doxygen.log 2>&1 ; \
$(DOXYGEN) > doxygen.log 2>&1 <&- ; \
touch doxygen-tag ; \
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment