diff options
author | Aaron LI <aly@aaronly.me> | 2019-01-06 23:11:24 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-01-06 23:11:24 +0800 |
commit | 47594b491b165bc3ec4e8909864bb8742c8abc8c (patch) | |
tree | b70dc3c3e71c01ac1f6bcdf8ad8d47904b2dc4ff | |
parent | 1c04268fb516f27f0755742fa9586f9d517398a1 (diff) | |
download | resume-47594b491b165bc3ec4e8909864bb8742c8abc8c.tar.bz2 |
Makefile: Add "zh" and "en" targets to easily build PDFs
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,6 +10,8 @@ DISTDIR= resume.$(DATE) TEXINPUTS:= .:fontawesome5:$(TEXINPUTS) all: $(PDFCAT) +en: resume-en.pdf +zh: resume-zh.pdf $(PDFCAT): $(PDFS) pdfjoin -o $@ $(PDFS) @@ -37,7 +39,7 @@ cleanall: latexmk -C $$f; \ done -.PHONY: all dist clean cleanall +.PHONY: all en zh dist clean cleanall # One liner to get the value of any makefile variable |