From 8aa2794c8ec61a3c85009193c2c078e52cfbddbe Mon Sep 17 00:00:00 2001 From: Greg Wilson Date: Mon, 9 May 2016 17:33:37 -0400 Subject: [PATCH] Looking for FIXME markers --- Makefile | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0ea8e0e..a6bcb61 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,18 @@ MAKEFILES=Makefile $(wildcard *.mk) JEKYLL=jekyll DST=_site -# Generated files in the order they appear in the navigation menu +# Source files in the order they appear in the navigation menu. +# This does _not_ include files which are typically unmodified. +SRC_FILES = \ + index.md \ + CONDUCT.md \ + setup.md \ + $(wildcard _episodes/*.md) \ + reference.md \ + $(wildcard _extras/*.md) \ + LICENSE.md + +# Generated files in the order they appear in the navigation menu. HTML_FILES = \ ${DST}/index.html \ ${DST}/conduct/index.html \ @@ -39,7 +50,12 @@ clean : ## files : show expected names of generated files for debugging. files : - @echo ${HTML_FILES} + @echo 'source:' ${SRC_FILES} + @echo 'generated:' ${HTML_FILES} + +## fixme : show FIXME markers embedded in source files. +fixme : + @fgrep -i -n FIXME ${SRC_FILES} || true ## singlepage : build hacky single-page version of material (after 'make site'). singlepage : -- GitLab