diff options
author | Aaron Ball <nullspoon@oper.io> | 2019-06-11 18:24:43 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2019-06-11 18:33:23 -0600 |
commit | 368ebf32345ef8f8322d178e2e01711e664b5b3d (patch) | |
tree | 442481dbcd308e9cd381e995191ecaceac2733f9 /Makefile | |
parent | 5c74af1d444c5bc6aed6b1c2f5ab49c7d3e06045 (diff) | |
download | resume-368ebf32345ef8f8322d178e2e01711e664b5b3d.tar.gz resume-368ebf32345ef8f8322d178e2e01711e664b5b3d.tar.xz |
Makefile:replace embed backend (xhtml11) with html5
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,6 +14,10 @@ all: make setup make html5 +embed: + make setup + asciidoctor $(safe) -b html5 -a stylesheet=$(style) -o $(html) $(src) + clean: rm -rv $(outdir)/* @@ -25,10 +29,6 @@ xhtml: make setup asciidoctor $(safe) -b xhtml11 -a linkcss -a stylesheet=$(style) -o $(html) $(src) -embed: - make setup - asciidoctor $(safe) -b xhtml11 -a stylesdir=$(style) -o $(html) $(src) - odf: echo "ERROR: Not implemented" exit 1 |