-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
170 lines (132 loc) · 4.89 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
## ========================================
## Commands for both workshop and lesson websites.
# Settings
MAKEFILES=Makefile $(wildcard *.mk)
JEKYLL=jekyll
JEKYLL_VERSION=3.7.3
PARSER=bin/markdown_ast.rb
DST=_site
# Command to run an Rscript
# Set this to Rscript -e if you don't want to build
# in Dockerised environment
# the mawds/rg11 image has the same packages and versions as in G11 of SSB
#RSCRIPT=docker run --rm --user "$$UID" -v "$$PWD":"$$PWD" -w="$$PWD" -ti mawds/rg11:1819 Rscript -e
RSCRIPT=Rscript -e
# Controls
.PHONY : commands clean files data
.NOTPARALLEL:
all : commands
## commands : show all commands.
commands :
@grep -h -E '^##' ${MAKEFILES} | sed -e 's/## //g'
## serve-rmd : run a local server, updating Rmd file automatically
serve-rmd: lesson-md lesson-watchrmd serve
## docker-serve : use docker to build the site
docker-serve :
docker run --rm -it -v ${PWD}:/srv/jekyll -p 127.0.0.1:4000:4000 jekyll/jekyll:${JEKYLL_VERSION} make serve
## serve : run a local server.
serve : lesson-md slides
${JEKYLL} serve
## site : build files but do not run a server.
site : lesson-md
${JEKYLL} build
# repo-check : check repository settings.
repo-check :
@bin/repo_check.py -s .
## clean : clean up junk files.
clean :
@rm -rf ${DST}
@rm -rf .sass-cache
@rm -rf bin/__pycache__
@find . -name .DS_Store -exec rm {} \;
@find . -name '*~' -exec rm {} \;
@find . -name '*.pyc' -exec rm {} \;
## clean-rmd : clean intermediate R files (that need to be committed to the repo).
clear-rmd :
@rm -rf ${RMD_DST}
@rm -rf fig/rmd-*
## ----------------------------------------
## Commands specific to workshop websites.
.PHONY : workshop-check
## workshop-check : check workshop homepage.
workshop-check :
@bin/workshop_check.py .
## ----------------------------------------
## Commands specific to lesson websites.
.PHONY : lesson-check lesson-md lesson-files lesson-fixme lesson-watchrmd
# RMarkdown files
RMD_SRC = $(wildcard _episodes_rmd/??-*.Rmd)
RMD_PP = $(subst _episodes_rmd/,_episodes_pp/,$(RMD_SRC))
RMD_DST = $(patsubst _episodes_pp/%.Rmd,_episodes/%.md,$(RMD_PP))
# RMarkdown slides
SLIDE_SRC = $(wildcard _slides_rmd/*.Rmd)
SLIDE_DST = $(patsubst _slides_rmd/%.Rmd,_slides/%.html,$(SLIDE_SRC))
# Lesson source files in the order they appear in the navigation menu.
MARKDOWN_SRC = \
index.md \
CODE_OF_CONDUCT.md \
setup.md \
$(sort $(wildcard _episodes/*.md)) \
reference.md \
$(sort $(wildcard _extras/*.md)) \
LICENSE.md
# Generated lesson files in the order they appear in the navigation menu.
HTML_DST = \
${DST}/index.html \
${DST}/conduct/index.html \
${DST}/setup/index.html \
$(patsubst _episodes/%.md,${DST}/%/index.html,$(sort $(wildcard _episodes/*.md))) \
${DST}/reference/index.html \
$(patsubst _extras/%.md,${DST}/%/index.html,$(sort $(wildcard _extras/*.md))) \
${DST}/license/index.html
## lesson-md : convert Rmarkdown files to markdown
lesson-md : ${RMD_DST}
lesson-watchrmd:
@bin/watchRmd.sh &
_episodes/%.md: _episodes_pp/%.Rmd
# @bin/knit_lessons.sh $< $@
${RSCRIPT} 'knitr::knit("$<", "$@")'
# Format challenges and solutions
# Without manually blockquoting them
_episodes_pp/%.Rmd : _episodes_rmd/%.Rmd
bin/format_challenge.py $< $@
# Use of .NOTPARALLEL makes rule execute only once
#${RMD_DST} : ${RMD_PP}
# @bin/knit_lessons.sh ${RMD_PP}
# Format challenges and solutions
# Without manually blockquoting them
_episodes_pp/%.Rmd : _episodes_rmd/%.Rmd
bin/format_challenge.py $< $@
## lesson-check : validate lesson Markdown.
lesson-check : lesson-fixme
@bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md
## lesson-check-all : validate lesson Markdown, checking line lengths and trailing whitespace.
lesson-check-all :
@bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md -l -w --permissive
## unittest : run unit tests on checking tools.
unittest :
@bin/test_lesson_check.py
## lesson-files : show expected names of generated files for debugging.
lesson-files :
@echo 'RMD_SRC:' ${RMD_SRC}
@echo 'RMD_DST:' ${RMD_DST}
@echo 'MARKDOWN_SRC:' ${MARKDOWN_SRC}
@echo 'HTML_DST:' ${HTML_DST}
@echo 'SLIDE_SRC:'${SLIDE_SRC}
@echo 'SLIDE_DST:'${SLIDE_DST}
## lesson-fixme : show FIXME markers embedded in source files.
lesson-fixme :
@fgrep -i -n FIXME ${MARKDOWN_SRC} || true
.PHONY : slides
## slides : Generate html slides from Rmd slide decks
slides: ${SLIDE_DST}
_slides/%.html: _slides_rmd/%.Rmd
@Rscript -e "rmarkdown::render('$<', output_dir='$(dir $@)')"
## data : Create the data zip file from episodes rmd data directory
data: data/r-novice.zip
data/r-novice.zip: $(shell find _episodes_rmd/data -type f)
@zip -j $@ $^
#-------------------------------------------------------------------------------
# Include extra commands if available.
#-------------------------------------------------------------------------------
-include commands.mk