blob: 8d3e0af7ff8142f88be98e171cdd962f8310a903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#
# Makefile -- make file for the paper fm
#
# (c) 2020 Prof Dr Andreas Mueller
#
SOURCES := \
einleitung.tex\
eigenschaften.tex \
beispiele.tex \
main.tex
#TIKZFIGURES := \
tikz/atoms-grid-still.tex \
#FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES))
#.PHONY: images
#images: $(FIGURES)
#figures/%.pdf: tikz/%.tex
# mkdir -p figures
# pdflatex --output-directory=figures $<
.PHONY: standalone
standalone: standalone.tex $(SOURCES) #$(FIGURES)
mkdir -p standalone
cd ../..; \
pdflatex \
--halt-on-error \
--shell-escape \
--output-directory=papers/sturmliouville/standalone \
--extra-mem-top=10000000 \
papers/sturmliouville/standalone.tex;
cd standalone; \
bibtex standalone; \
makeindex standalone;
|