summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@iohq.net>2016-10-30 17:57:37 -0600
committerAaron Ball <nullspoon@iohq.net>2016-10-30 17:57:37 -0600
commit098e52daccf212bddc0dc0211ca21e2301f1469b (patch)
treea92518ce1ac8896a17126102e765d9a34f89b83d /Makefile
parentd51f7c9dcda77fc3d0867a52c23fe6bdfd386d77 (diff)
downloadresume-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--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index da11ca4..c7fbc0b 100644
--- a/Makefile
+++ b/Makefile
@@ -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)

Generated by cgit