diff options
author | Aaron Ball <nullspoon@iohq.net> | 2016-10-30 17:57:37 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2016-10-30 17:57:37 -0600 |
commit | 098e52daccf212bddc0dc0211ca21e2301f1469b (patch) | |
tree | a92518ce1ac8896a17126102e765d9a34f89b83d /Makefile | |
parent | d51f7c9dcda77fc3d0867a52c23fe6bdfd386d77 (diff) | |
download | resume-098e52daccf212bddc0dc0211ca21e2301f1469b.tar.gz resume-098e52daccf212bddc0dc0211ca21e2301f1469b.tar.xz |
Makefile:Added html5 build target
Changed default to call the html5 build target, rather than the all
target including the commands to build.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,11 +10,14 @@ html=$(outdir)/resume.html .SILENT : help pdf odf all: - asciidoc $(safe) -b html5 -a linkcss -a stylesdir=${PWD} -o $(html) $(src) + make html5 clean: rm -rv $(outdir)/* +html5: + asciidoc $(safe) -b html5 -a linkcss -a stylesdir=${PWD} -o $(html) $(src) + xhtml: asciidoc $(safe) -b xhtml11 -a linkcss -a stylesdir=${PWD} -o $(html) $(src) |