Skip to content

Commit

Permalink
Merge pull request mszep#8 from whym/master
Browse files Browse the repository at this point in the history
Add output file names to Makefile
  • Loading branch information
mszep committed Feb 5, 2015
2 parents f94cca2 + c1d9125 commit 961bc04
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
all: html pdf docx rtf

pdf: resume.md
pdf: resume.pdf
resume.pdf: resume.md
pandoc --standalone --template style_chmduquesne.tex \
--from markdown --to context \
-V papersize=A4 \
-o resume.tex resume.md; \
context resume.tex

html: style_chmduquesne.css resume.md
html: resume.html
resume.html: style_chmduquesne.css resume.md
pandoc --standalone -H style_chmduquesne.css \
--from markdown --to html \
-o resume.html resume.md

docx: resume.md
docx: resume.docx
resume.docx: resume.md
pandoc -s -S resume.md -o resume.docx

rtf: resume.md
rtf: resume.rtf
resume.rtf: resume.md
pandoc -s -S resume.md -o resume.rtf

clean:
Expand Down

0 comments on commit 961bc04

Please sign in to comment.