We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f401d27 commit bdeb2d0Copy full SHA for bdeb2d0
1 file changed
Makefile
@@ -0,0 +1,25 @@
1
+SRC = $(wildcard *.tex)
2
+
3
+PDFS = $(SRC:.tex=.pdf)
4
5
+all: clean pdf
6
7
+en: clean xelatex resume.tex
8
9
+zh_CN: clean xelatex resume-zh_CN.tex
10
11
+pdf: clean $(PDFS)
12
13
+%.pdf: %.tex
14
+ xelatex $<
15
16
+ifeq ($(OS),Windows_NT)
17
+ # on Windows
18
+ RM = cmd //C del
19
+else
20
+ # on Unix/Linux
21
+ RM = rm -f
22
+endif
23
24
+clean:
25
+ $(RM) *.log *.aux *.bbl *.blg *.synctex.gz *.out *.toc *.lof *.idx *.ilg *.ind *.pdf
0 commit comments