-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
96 lines (66 loc) · 2.11 KB
/
Makefile
File metadata and controls
96 lines (66 loc) · 2.11 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
## This is Exponential_figures
## 3SS/exponential
current: target
-include target.mk
-include makestuff/perl.def
######################################################################
# Content
vim_session:
bash -cl "vmt"
######################################################################
### Makestuff
Sources += Makefile
######################################################################
## Content
Sources += $(wildcard *.R)
Sources += $(wildcard *.pl)
Sources += $(wildcard *.raw)
Ignore += canada.tsv
canada.tsv: canada.raw canada.pl
$(PUSH)
canada.Rout: canada.tsv
## Stochastic comparison (3SS)
dandelion.Rout: geometric.Rout dandelion.R
## Scaling comparisons (3SS)
growth.Rout: bd.Rout growth.R
## Which one is exponential?
exponential.Rout: exponential.R
exponential.Rout.four.pdf: exponential.R
## Characteristic cool pictures (in developmen)
characteristic.Rout: characteristic.R
speed_story.Rout: characteristic.Rout speed_story.R
bacteria_scales.Rout: characteristic.Rout bacteria_scales.R
bacteria_times.Rout: characteristic.Rout bacteria_times.R
######################################################################
## Weird stuff
## Rescued in haste from wiki
moth.Rout: moth.R
## NTU simple dandelions
ntu.Rout: geometric.Rout ntu.R
## CPH 2023 Maybe better to use MMED stuff? Or just ancient stuff.
cph.Rout: cph.R geometric.Rout
######################################################################
### Older
bacteria.Rout: geometric.Rout
provinces.pdf log_provinces.pdf: canada.Rout ;
provinces.png log_provinces.png: %.png: %.pdf
fast.Rout: bd.Rout
fast_scaled.Rout: bd.Rout
decline.Rout: bd.Rout decline.R
comparison.Rout: comparison.R
tt.Rout: tt.R bd_notime.Rout
happy.Rout sad.Rout: geometric.Rout
log_happy.Rout log_sad.Rout: geometric.Rout
rabbits.pdf log_rabbits.pdf: rabbits.Rout
Ignore += makestuff
msrepo = https://github.com/dushoff
Makefile: makestuff/Makefile
makestuff/Makefile:
git clone $(msrepo)/makestuff
ls $@
-include makestuff/os.mk
-include makestuff/wrapR.mk
-include makestuff/up.mk
-include makestuff/git.mk
-include makestuff/visual.mk
-include makestuff/projdir.mk