Skip to content
Makefile 3.4 KiB
Newer Older
## ========================================
## Commands for both workshop and lesson websites.

# Settings
MAKEFILES=Makefile $(wildcard *.mk)
JEKYLL=bundle exec jekyll
JEKYLL_VERSION=3.7.3
PARSER=bin/markdown_ast.rb
DST=_site

# Controls
.PHONY : commands clean files
all : commands

Greg Wilson's avatar
Greg Wilson committed
## commands         : show all commands.
commands :
	@grep -h -E '^##' ${MAKEFILES} | sed -e 's/## //g'

## 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

Greg Wilson's avatar
Greg Wilson committed
## serve            : run a local server.
	${JEKYLL} serve
Greg Wilson's avatar
Greg Wilson committed
## site             : build files but do not run a server.
	${JEKYLL} build
# repo-check        : check repository settings.
repo-check :
	@bin/repo_check.py -s .

Greg Wilson's avatar
Greg Wilson committed
## 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 {} \;
Greg Wilson's avatar
Greg Wilson committed
## clean-rmd        : clean intermediate R files (that need to be committed to the repo).
clean-rmd :
	@rm -rf fig/rmd-*

## ----------------------------------------
## Commands specific to workshop websites.

.PHONY : workshop-check

Greg Wilson's avatar
Greg Wilson committed
## 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

# RMarkdown files
RMD_SRC = $(wildcard _episodes_rmd/??-*.Rmd)
RMD_DST = $(patsubst _episodes_rmd/%.Rmd,_episodes/%.md,$(RMD_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 \
David Mawdsley's avatar
David Mawdsley committed
  $(patsubst _episodes/%.md,${DST}/%/index.html,$(sort $(wildcard _episodes/*.md))) \
  ${DST}/reference/index.html \
David Mawdsley's avatar
David Mawdsley committed
  $(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}

_episodes/%.md: _episodes_rmd/%.Rmd
	@bin/knit_lessons.sh $< $@
Greg Wilson's avatar
Greg Wilson committed
## lesson-check     : validate lesson Markdown.
lesson-check : lesson-fixme
Greg Wilson's avatar
Greg Wilson committed
	@bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md
Greg Wilson's avatar
Greg Wilson committed
## lesson-check-all : validate lesson Markdown, checking line lengths and trailing whitespace.
lesson-check-all :
Raniere Silva's avatar
Raniere Silva committed
	@bin/lesson_check.py -s . -p ${PARSER} -r _includes/links.md -l -w --permissive
Greg Wilson's avatar
Greg Wilson committed

## unittest         : run unit tests on checking tools.
unittest :
Raniere Silva's avatar
Raniere Silva committed
	@bin/test_lesson_check.py
Greg Wilson's avatar
Greg Wilson committed
## 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}
Greg Wilson's avatar
Greg Wilson committed
## lesson-fixme     : show FIXME markers embedded in source files.
lesson-fixme :
	@fgrep -i -n FIXME ${MARKDOWN_SRC} || true

#-------------------------------------------------------------------------------
# Include extra commands if available.
#-------------------------------------------------------------------------------

-include commands.mk