blob: 54ed23b2ecb8a09f9f97b0219954244c648919f2 (
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
38
39
40
41
42
43
44
45
46
|
#
# Makefile
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
all: gammaplot.pdf fibonacci.pdf order.pdf beta.pdf loggammaplot.pdf \
0f1.pdf
gammaplot.pdf: gammaplot.tex gammapaths.tex
pdflatex gammaplot.tex
gammapaths.tex: gammaplot.m
octave gammaplot.m
fibonaccigrid.tex: fibonacci.m
octave fibonacci.m
fibonacci.pdf: fibonacci.tex fibonaccigrid.tex
pdflatex fibonacci.tex
order.pdf: order.tex orderpath.tex
pdflatex order.tex
orderpath.tex: order.m
octave order.m
beta.pdf: beta.tex betapaths.tex
pdflatex beta.tex
betapaths.tex: betadist.m
octave betadist.m
loggammaplot.pdf: loggammaplot.tex loggammadata.tex
pdflatex loggammaplot.tex
loggammadata.tex: loggammaplot.m
octave loggammaplot.m
0f1: 0f1.cpp
g++ -O -Wall -g -o 0f1 0f1.cpp
0f1data.tex: 0f1
./0f1
0f1.pdf: 0f1.tex 0f1data.tex
pdflatex 0f1.tex
|