blob: 57b42c8b701260a7770d660118390b412b74ab68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Produce HTML & RIVER outputs with pandoc
# Case Duckworth | autocento.me
# inspired by Lincoln Mullen | lincolnmullen.com
# Define directories, file lists, and options
HTMLdir = ..
RIVdir = ../river
LUAdir = ../lua
HTMLs := $(patsubst %.txt,%.html,$(wildcard *.txt))
HTMopts = --template=$(HTMLdir)/.template.html
HTMopts+= --smart --mathml --section-divs
RIVERs := $(patsubst %.txt,%.river,$(wildcard *.txt))
RIVopts =
LOZENGE = ../js/lozenge.js
LOZupd = ../js/update-lozenge.sh
# Do everything
.PHONY: all html river lozenge
all : html river lozenge
html : $(HTMLs)
river : $(RIVERs)
lozenge : $(LOZENGE)
# Generic rule for HTML targets and Markdown sources
%.html : %.txt
pandoc $< -f markdown -t html5 $(HTMopts) -o $(HTMLdir)/$@
# Generic rule for RIVER targets and Markdown sources
%.river : %.txt
@echo River-ing $@
@sed "s/[^A-Za-z0-9'-]/ /g" $< |\
pandoc - -f markdown -t $(LUAdir)/river.lua $(RIVopts) -o $(RIVdir)/$@
$(LOZENGE) : $(HTMLdir)/$(HTMLs)
@echo "Updating lozenge.js..."
@list=`ls $(HTMLdir)/*.html |\
sed -e 's,../,,g' |\
tr '\n' ' ' |\
sed -e 's/\(\S\+.html\) /"\1",/g'\
-e 's/^\(.*\),$$/var files=[\1]/'` &&\
sed -i "s/var files=.*/$$list/" $(LOZENGE)
# TODO: add compiling hapax
# TODO: add first line compiler
|