12 lines
189 B
Makefile
12 lines
189 B
Makefile
|
.PHONY: clean
|
||
|
|
||
|
CC = xelatex
|
||
|
RESUME_DIR = resume
|
||
|
RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex')
|
||
|
|
||
|
all: resume.tex $(RESUME_SRCS)
|
||
|
$(CC) -output-directory=./ $<
|
||
|
|
||
|
clean:
|
||
|
rm -rf *.pdf
|