diff options
author | Case Duckworth | 2015-03-23 23:36:28 -0700 |
---|---|---|
committer | Case Duckworth | 2015-03-23 23:38:31 -0700 |
commit | 14fca7d45604d46d51e135279d3d5873b1f57f68 (patch) | |
tree | e5a14f851b5983d2070f57b1064ab48a85bc20b8 /src | |
parent | Add makefile (no tests yet) (diff) | |
download | autocento-14fca7d45604d46d51e135279d3d5873b1f57f68.tar.gz autocento-14fca7d45604d46d51e135279d3d5873b1f57f68.zip |
Makefile v.01 is alive
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile index eefa4a3..800f8a0 100644 --- a/src/makefile +++ b/src/makefile | |||
@@ -17,8 +17,11 @@ all : $(HTMLs) $(RIVERs) | |||
17 | 17 | ||
18 | # Generic rule for HTML targets and Markdown sources | 18 | # Generic rule for HTML targets and Markdown sources |
19 | %.html : %.txt | 19 | %.html : %.txt |
20 | pandoc $< -f markdown -t html5 $(HTMLopts) -o $(HTMLdir)/$@ | 20 | pandoc $< -f markdown -t html5 $(HTMopts) -o $(HTMLdir)/$@ |
21 | 21 | ||
22 | # Generic rule for RIVER targets and Markdown sources | 22 | # Generic rule for RIVER targets and Markdown sources |
23 | %.river : %.txt | 23 | %.river : %.txt |
24 | pandoc $< -f markdown -t $(LUAdir)/river.lua $(RIVopts) -o $(RIVdir)/$@ | 24 | pandoc $< -f markdown -t $(LUAdir)/river.lua $(RIVopts) -o $(RIVdir)/$@ |
25 | |||
26 | # TODO: add lozenge updating | ||
27 | # AND compiling hapax | ||