浏览代码

Expanded make to generate rtf and docx files.

shwoop 10 年之前
父节点
当前提交
86c2067ce4
共有 2 个文件被更改,包括 11 次插入1 次删除
  1. 2 0
      .gitignore
  2. 9 1
      Makefile

+ 2 - 0
.gitignore

@@ -5,3 +5,5 @@
 resume.tex
 *.swo
 *.swp
+*.docx
+*.rtf

+ 9 - 1
Makefile

@@ -1,4 +1,4 @@
-all: html pdf
+all: html pdf docx rtf
 
 pdf: resume.md
 	pandoc --standalone --template style_chmduquesne.tex \
@@ -12,9 +12,17 @@ html: style_chmduquesne.css resume.md
         --from markdown --to html \
         -o resume.html resume.md
 
+docx: resume.md
+	pandoc -s -S resume.md -o resume.docx
+
+rtf: resume.md
+	pandoc -s -S resume.md -o resume.rtf
+
 clean:
 	rm resume.html
 	rm resume.tex
 	rm resume.tuc
 	rm resume.log
 	rm resume.pdf
+	rm resume.docx
+	rm resume.rtf