1 ## ========================================
2 ## Commands for both workshop and lesson websites.
5 MAKEFILES=Makefile $(wildcard *.mk)
7 PARSER=bin/markdown_ast.rb
11 .PHONY : commands clean files
15 ## commands : show all commands.
17 @grep -h -E '^##' ${MAKEFILES} | sed -e 's/## //g'
19 ## serve : run a local server.
23 ## site : build files but do not run a server.
27 # repo-check : check repository settings.
29 @bin/repo_check.py -s .
31 ## clean : clean up junk files.
35 @rm -rf bin/__pycache__
36 @find . -name .DS_Store -exec rm {} \;
37 @find . -name '*~' -exec rm {} \;
38 @find . -name '*.pyc' -exec rm {} \;
40 ## clean-rmd : clean intermediate R files (that need to be committed to the repo).
45 ## ----------------------------------------
46 ## Commands specific to workshop websites.
48 .PHONY : workshop-check
50 ## workshop-check : check workshop homepage.
52 @bin/workshop_check.py .
54 ## ----------------------------------------
55 ## Commands specific to lesson websites.
57 .PHONY : lesson-check lesson-md lesson-files lesson-fixme
60 RMD_SRC = $(wildcard _episodes_rmd/??-*.Rmd)
61 RMD_DST = $(patsubst _episodes_rmd/%.Rmd,_episodes/%.md,$(RMD_SRC))
63 # Lesson source files in the order they appear in the navigation menu.
68 $(sort $(wildcard _episodes/*.md)) \
70 $(sort $(wildcard _extras/*.md)) \
73 # Generated lesson files in the order they appear in the navigation menu.
76 ${DST}/conduct/index.html \
77 ${DST}/setup/index.html \
78 $(patsubst _episodes/%.md,${DST}/%/index.html,$(sort $(wildcard _episodes/*.md))) \
79 ${DST}/reference/index.html \
80 $(patsubst _extras/%.md,${DST}/%/index.html,$(sort $(wildcard _extras/*.md))) \
81 ${DST}/license/index.html
83 ## lesson-md : convert Rmarkdown files to markdown
84 lesson-md : ${RMD_DST}
86 # Use of .NOTPARALLEL makes rule execute only once
87 ${RMD_DST} : ${RMD_SRC}
88 @bin/knit_lessons.sh ${RMD_SRC}
90 ## lesson-check : validate lesson Markdown.
91 lesson-check : lesson-fixme
92 @bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md
94 ## lesson-check-all : validate lesson Markdown, checking line lengths and trailing whitespace.
96 @bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md -l -w --permissive
98 ## unittest : run unit tests on checking tools.
100 @bin/test_lesson_check.py
102 ## lesson-files : show expected names of generated files for debugging.
104 @echo 'RMD_SRC:' ${RMD_SRC}
105 @echo 'RMD_DST:' ${RMD_DST}
106 @echo 'MARKDOWN_SRC:' ${MARKDOWN_SRC}
107 @echo 'HTML_DST:' ${HTML_DST}
109 ## lesson-fixme : show FIXME markers embedded in source files.
111 @fgrep -i -n FIXME ${MARKDOWN_SRC} || true
113 #-------------------------------------------------------------------------------
114 # Include extra commands if available.
115 #-------------------------------------------------------------------------------