blob: 15c0aa01202054bafc5210d7e669108aa2d59bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Makefile -- make file for the paper punktgruppen
#
# (c) 2020 Prof Dr Andreas Mueller
#
TIKZFIGURES := \
tikz/combine-symmetries.tex \
tikz/lattice.tex \
tikz/piezo-atoms.tex \
tikz/piezo.tex \
tikz/projections.tex
FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES))
.PHONY: images
images: $(FIGURES)
figures/%.pdf: tikz/%.tex
mkdir -p figures
pdflatex --output-directory=figures $<
|