-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
65 lines (45 loc) · 1.48 KB
/
Makefile
File metadata and controls
65 lines (45 loc) · 1.48 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
## This is the productModel canmod github project
## https://github.com/canmod/productModel.git
######################################################################
current: target
-include target.mk
# -include makestuff/perl.def
vim_session:
bash -cl "vmt README.md"
######################################################################
Sources += README.md
Sources += $(wildcard *.tex *.sh)
## ms_submit.pdf: ms_submit.tex abstract.tex Appendices.tex body.tex
ms_submit.texdeps.mk: abstract.texdeps.mk body.texdeps.mk
Ignore += inkscape.check
ms_submit.tex: | inkscape.check
inkscape.check:
@echo Checking for inkscape ...
@inkscape --version || (echo inkscape is needed for this project && false)
@touch $@
Ignore += svg-inkscape
######################################################################
Ignore += main
main:
$(MAKE) main.branchdir
######################################################################
### Makestuff
## Sources += $(wildcard *.mk)
## include $(wildcard *.mk)
Sources += Makefile
Ignore += makestuff
msrepo = https://github.com/dushoff
Makefile: makestuff/02.stamp
makestuff/%.stamp:
- $(RM) makestuff/*.stamp
(cd makestuff && $(MAKE) pull) || git clone --depth 1 $(msrepo)/makestuff
touch $@
-include makestuff/os.mk
## -include makestuff/pipeR.mk
bibtex = bibtex $*
latexEngine = pdflatex --shell-escape
-include makestuff/texj.mk
-include makestuff/git.mk
-include makestuff/gitbranch.mk
-include makestuff/visual.mk
-include makestuff/projdir.mk