generated from carpentries-incubator/template
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Makefile
214 lines (164 loc) · 5.96 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
## ========================================
## Commands for both workshop and lesson websites.
# Settings
MAKEFILES=Makefile $(wildcard *.mk)
JEKYLL=bundle config --local set path .vendor/bundle && bundle install && bundle update && bundle exec jekyll
PARSER=bin/markdown_ast.rb
DST=_site
# Check Python 3 is installed and determine if it's called via python3 or python
# (https://stackoverflow.com/a/4933395)
PYTHON3_EXE := $(shell which python3 2>/dev/null)
ifneq (, $(PYTHON3_EXE))
ifeq (,$(findstring Microsoft/WindowsApps/python3,$(subst \,/,$(PYTHON3_EXE))))
PYTHON := python3
endif
endif
ifeq (,$(PYTHON))
PYTHON_EXE := $(shell which python 2>/dev/null)
ifneq (, $(PYTHON_EXE))
PYTHON_VERSION_FULL := $(wordlist 2,4,$(subst ., ,$(shell python --version 2>&1)))
PYTHON_VERSION_MAJOR := $(word 1,${PYTHON_VERSION_FULL})
ifneq (3, ${PYTHON_VERSION_MAJOR})
$(error "Your system does not appear to have Python 3 installed.")
endif
PYTHON := python
else
$(error "Your system does not appear to have any Python installed.")
endif
endif
# Controls
.PHONY : commands clean files docker
# Default target
.DEFAULT_GOAL := commands
## I. Commands for both workshop and lesson websites
## =================================================
## * serve : render website and run a local server
serve: lesson-md
${JEKYLL} serve
# slides
## * site : build website but do not run a server
site: data figure lesson-md
${JEKYLL} build
# slides
## * docker-serve : use Docker to serve the site
docker-serve:
docker pull carpentries/lesson-docker:latest
docker run --rm -it \
-v $${PWD}:/home/rstudio \
-p 4000:4000 \
-p 8787:8787 \
-e USERID=$$(id -u) \
-e GROUPID=$$(id -g) \
carpentries/lesson-docker:latest
## * repo-check : check repository settings
repo-check:
@${PYTHON} 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)
clean-rmd:
@rm -rf ${RMD_DST}
@rm -rf fig/rmd-*
##
## II. Commands specific to workshop websites
## =================================================
.PHONY : workshop-check
## * workshop-check : check workshop homepage
workshop-check:
@${PYTHON} bin/workshop_check.py .
##
## III. Commands specific to lesson websites
## =================================================
.PHONY: lesson-check lesson-md lesson-files lesson-fixme slides figure clean-fig data
# RMarkdown files
RMD_SRC = $(wildcard _episodes_rmd/??-*.Rmd)
RMD_DST = $(patsubst _episodes_rmd/%.Rmd,_episodes/%.md,$(RMD_SRC))
SLI_DST = $(patsubst _episodes/%.md,_slides/%.Rmd,$(RMD_DST))
SLI_HTML = $(patsubst _slides/%.Rmd,_slides/%.html,$(SLI_DST))
FIG_TEX = $(wildcard fig/*.tex)
FIG_PDF = $(patsubst fig/%.tex,fig/%.pdf,$(FIG_TEX))
FIG_PNG = $(patsubst fig/%.pdf,fig/%.png,$(FIG_PDF))
DATA_SRC = $(wildcard data/*.R)
DATA_DST = $(patsubst data/%.R,data/%.rds,$(DATA_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
## * install-rmd-deps : Install R packages dependencies to build the RMarkdown lesson
dependencies.csv: _episodes_rmd/*.Rmd
@${SHELL} bin/list_r_deps.sh
.installed: dependencies.csv
@${SHELL} bin/install_r_deps.sh
@touch .installed
## * lesson-md : convert Rmarkdown files to markdown
lesson-md: ${RMD_DST} figure
_episodes/%.md: _episodes_rmd/%.Rmd .installed
@mkdir -p _episodes
@${SHELL} bin/knit_lessons.sh $< $@
# _slides/%.Rmd: _episodes/%.md
# Rscript bin/slider.R $< $@
_slides/%.html: _slides/%.Rmd
Rscript -e 'rmarkdown::render("$<")'
slides: ${SLI_DST} ${SLI_HTML}
figure: ${FIG_PNG} fig/pendulum.gif fig/kmeans.gif clean-fig
fig/%.pdf: fig/%.tex
rubber --inplace -d $<
fig/%.png: fig/%.pdf
convert -density 300 $< $@
fig/pendulum.gif: fig/pca-animation.R
Rscript $<
fig/kmeans.gif: fig/kmeans.R
Rscript $<
data: ${DATA_DST}
data/%.rds: data/%.R
Rscript $<
data/coefHorvath.rds: data/methylation.rds
data/small_methylation.rds: data/methylation.rds
clean-fig:
find fig/ -regextype egrep -regex ".*\.(aux|dvi|fdb_latexmk|fls|log)" | xargs -r rm
## * lesson-check : validate lesson Markdown
lesson-check: lesson-fixme
@${PYTHON} 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:
@${PYTHON} bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md -l -w --permissive
## * unittest : run unit tests on checking tools
unittest:
@${PYTHON} 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}
## * lesson-fixme : show FIXME markers embedded in source files
lesson-fixme:
@grep --fixed-strings --word-regexp --line-number --no-messages FIXME ${MARKDOWN_SRC} || true
##
## IV. Auxililary (plumbing) commands
## =================================================
## * commands : show all commands.
commands:
@sed -n -e '/^##/s|^##[[:space:]]*||p' $(MAKEFILE_LIST)
docker:
docker build -t alanocallaghan/high-dimensional-stats-r:latest . && docker push alanocallaghan/high-dimensional-stats-r:latest