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

* rip the common latex rules out of doc/istl/comm/Makefile.am and put

  them into am/latex.
* import the "Praktukumsbericht" about Refinement into cvs.

[[Imported from SVN: r509]]
parent 711646c6
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@ AC_CHECK_PROGS([WML], [wml], [true])
AM_CONDITIONAL([WML], [test "x$WML" != xtrue])
AC_CHECK_PROGS([PERL], [perl], [true])
DUNE_INKSCAPE
AC_CHECK_PROGS([CONVERT], [convert], [true])
# doxygen and latex take a lot of time...
AC_ARG_ENABLE(documentation,
......
......@@ -8,31 +8,11 @@ endif
dist_pkgdata_DATA = $(DOCS)
# rerun TEX if log-file suggests that
.tex.dvi:
$(TEX) $*
while grep Rerun $*.log > /dev/null ; do \
$(TEX) $* ; \
done
# check if Bibtex needs to be called
if grep '^\\citation{' *.aux > /dev/null ; then \
$(BIBTEX) $* ; \
$(TEX) $* ; \
while grep Rerun $*.log > /dev/null ; do \
$(TEX) $* ; \
done ; \
fi
.dvi.pdf:
$(DVIPDF) $*
.dvi.ps:
$(DVIPS) $*
CLEANFILES = *.aux *.bbl *.blg *.log *.out *.toc *.dvi *.pdf *.ps
# setting like in dune-web
CURDIR=doc/istl
include $(top_srcdir)/am/latex
include $(top_srcdir)/am/webstuff
include $(top_srcdir)/am/global-rules
......@@ -19,27 +19,6 @@ indexset_SOURCES = indexset.cc buildindexset.hh reverse.hh
indexset_CXXFLAGS = $(MPI_CPPFLAGS)
indexset_LDADD = $(MPI_LDFLAGS)
# rerun TEX if log-file suggests that
.tex.dvi:
$(TEX) $*
while grep Rerun $*.log > /dev/null ; do \
$(TEX) $* ; \
done
# check if Bibtex needs to be called
if grep '^\\citation{' *.aux > /dev/null ; then \
$(BIBTEX) $* ; \
$(TEX) $* ; \
while grep Rerun $*.log > /dev/null ; do \
$(TEX) $* ; \
done ; \
fi
.dvi.pdf:
$(DVIPDF) $*
.dvi.ps:
$(DVIPS) $*
communication.dvi : communication.tex buildindexset.hh reverse.hh
......@@ -49,5 +28,6 @@ CLEANFILES = *.aux *.bbl *.blg *.log *.out *.toc *.dvi *.pdf *.ps
# setting like in dune-web
CURDIR=doc/istl/comm
include $(top_srcdir)/am/latex
include $(top_srcdir)/am/webstuff
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