-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
51 lines (34 loc) · 915 Bytes
/
Makefile
File metadata and controls
51 lines (34 loc) · 915 Bytes
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
# Competition_models
current: target
-include target.mk
Sources = Makefile
##################################################################
## Content
Sources += $(wildcard *.R)
## Basic functions; also used elsewhere (evaluation)
comp.Rout: comp.R
$(wrapR)
mutual.comp.Rout: mutual.R
## second.comp.Rout: second.R
## third.comp.Rout: third.R
%.comp.Rout: comp.rda %.R deSolve.R
$(wrapR)
bifurcation.Rout: bifurcation.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 $@
-include makestuff/os.mk
-include makestuff/pipeR.mk
-include makestuff/pdfpages.mk
-include makestuff/git.mk
-include makestuff/visual.mk
-include makestuff/projdir.mk