-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
66 lines (45 loc) · 1.41 KB
/
Makefile
File metadata and controls
66 lines (45 loc) · 1.41 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
## This is Compensation_models, a project directory under Bio3SS
## Modernizing just for final; will need more work, I guess. 2022 Apr 11 (Mon)
## makestuff/project.Makefile
current: target
-include target.mk
# include makestuff/perl.def
######################################################################
## Content
discrete_pop.Rout: discrete_pop.R
$(wrapR)
Sources += $(wildcard *.R)
stable.plots.Rout: stable.R
%.plots.Rout: discrete_pop.rda par.R %.R
$(run-R)
## Switching to using mostly perennial populations 2024 Jan 21 (Sun)
## Idea is to separate λ and f, conceptually
## stablePer.plots.Rout: stablePer.R
## dampedPer.plots.Rout: dampedPer.R
## twoPer.plots.Rout: twoPer.R
## wildPer.plots.Rout: wildPer.R
######################################################################
movie.Rout: discrete_pop.rda movie.R
$(run-R)
autowrapR = defined
### Moths
mothtest.Rout: moth_params.rda moth.rda mothtest.R
$(run-R)
######################################################################
### Makestuff
Sources += Makefile
## Sources += content.mk
## include content.mk
Ignore += makestuff
msrepo = https://github.com/dushoff
Makefile: makestuff/Makefile
makestuff/Makefile:
git clone $(msrepo)/makestuff
ls $@
export ms = makestuff
-include makestuff/os.mk
-include makestuff/pdfpages.mk
-include makestuff/pipeR.mk
-include makestuff/git.mk
-include makestuff/visual.mk
-include makestuff/projdir.mk