-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
55 lines (37 loc) · 1.2 KB
/
Makefile
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
47
48
49
50
51
52
53
54
55
# all: ds_density.nc ds_freq.nc ds_gravity.nc ds_waterdepth.nc 1_radiation.png ds_wave_cpl.nc mat_k.nc mat_s.nc 2_1_correlation.png 2_2_waveshape.png 2_3_infmatrix.png report.pdf clean
default: report.pdf
.PHONY : default
report.pdf: report.tex img/1_radiation.png img/2_1_correlation.png img/2_2_waveshape.png img/2_3_infmatrix.png
pdflatex report.tex
bibtex report.aux
pdflatex report.tex
bibtex report.aux
pdflatex report.tex
ds_density.nc: radiation.py
python radiation.py
ds_freq.nc: radiation.py
python radiation.py
ds_gravity.nc: radiation.py
python radiation.py
ds_waterdepth.nc: radiation.py
python radiation.py
img/1_radiation.png: plot_radiation.py ds_density.nc ds_freq.nc ds_gravity.nc ds_waterdepth.nc
python plot_radiation.py
ds_wave_cpl.nc: wave.py
python wave.py
mat_k.nc: wave.py
python wave.py
mat_s.nc: wave.py
python wave.py
img/2_1_correlation.png: plot_wave.py ds_wave_cpl.nc
python plot_wave.py
img/2_2_waveshape.png: plot_wave.py ds_wave_cpl.nc
python plot_wave.py
img/2_3_infmatrix.png: plot_wave.py mat_k.nc mat_s.nc
python plot_wave.py
clean:
rm *.nc report.bbl report.aux report.blg report.log
.PHONY : clean
deepclean:
rm report.pdf img/*.png
.PHONY: deepclean