2024-07-28 20:12:45 -05:00
|
|
|
all: resume.html resume.pdf resume.docx resume.txt
|
|
|
|
@echo "====Finished===="
|
2024-07-28 19:02:58 -05:00
|
|
|
|
2024-07-28 20:12:45 -05:00
|
|
|
resume.html: resume.md resume.css
|
|
|
|
@echo "====Creating html from md===="
|
|
|
|
pandoc --standalone -c resume.css --from markdown --to html -o resume.html resume.md
|
|
|
|
|
|
|
|
|
|
|
|
resume.pdf: resume.html
|
|
|
|
@echo "====Creating pdf from html===="
|
|
|
|
wkhtmltopdf --enable-local-file-access resume.html resume.pdf
|
|
|
|
|
|
|
|
|
|
|
|
resume.docx: resume.md
|
|
|
|
@echo "====Creating docx from md===="
|
|
|
|
pandoc --from markdown --to docx -o resume.docx resume.md
|
|
|
|
|
|
|
|
|
|
|
|
resume.txt: resume.md
|
|
|
|
@echo "====Creating txt from md===="
|
|
|
|
pandoc --from markdown --to plain -o resume.txt resume.md
|
|
|
|
|
|
|
|
clean:
|
2024-07-31 02:38:10 -05:00
|
|
|
rm -f resume.html resume.pdf resume.docx resume.txt
|