Skip to content

Commit

Permalink
Better display of file groups in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gvwilson committed Jun 23, 2016
1 parent 02b4ec1 commit 8667603
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ 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.
SRC_FILES = \
MARKDOWN_SRC = \
index.md \
CONDUCT.md \
setup.md \
Expand All @@ -67,7 +67,7 @@ SRC_FILES = \
LICENSE.md

# Generated lesson files in the order they appear in the navigation menu.
HTML_FILES = \
HTML_DST = \
${DST}/index.html \
${DST}/conduct/index.html \
${DST}/setup/index.html \
Expand All @@ -89,13 +89,14 @@ unittest :

## lesson-files : show expected names of generated files for debugging.
lesson-files :
@echo 'RMarkdown:' ${RMD_SRC}
@echo 'source:' ${SRC_FILES}
@echo 'generated:' ${HTML_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 :
@fgrep -i -n FIXME ${SRC_FILES} || true
@fgrep -i -n FIXME ${MARKDOWN_SRC} || true

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

0 comments on commit 8667603

Please sign in to comment.