Oddly enough, after running
cookiecutter https://github.com/entangled/bootstrap
the generated Makefile contains
static_files := $(shell find lit -type f -not -name '*.md')
as opposed to
static_files := $(shell find -L lit -type f -not -name '*.md')
in the source. Notice the missing -L.