mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2026-05-05 05:06:45 +08:00
- Created resume.tex using Awesome CV template. - Added personal information including name, position, contact details, and social links. - Included sections for summary, skills, work experience, education, projects, extracurricular activities, honors & awards, certificates, committees, presentations, and writing. - Implemented detailed descriptions for each section, highlighting relevant experiences and achievements. - Added binary files for resume output (resume.pdf and resume.xdv).
22 lines
576 B
Makefile
22 lines
576 B
Makefile
.PHONY: examples
|
|
|
|
CC = latexmk -xelatex
|
|
EXAMPLES_DIR = src
|
|
RESUME_DIR = src/resume
|
|
CV_DIR = src/cv
|
|
RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex')
|
|
CV_SRCS = $(shell find $(CV_DIR) -name '*.tex')
|
|
|
|
examples: $(foreach x, coverletter cv resume, $x.pdf)
|
|
|
|
resume.pdf: $(EXAMPLES_DIR)/resume.tex $(RESUME_SRCS)
|
|
$(CC) -output-directory=$(EXAMPLES_DIR) $<
|
|
|
|
cv.pdf: $(EXAMPLES_DIR)/cv.tex $(CV_SRCS)
|
|
$(CC) -output-directory=$(EXAMPLES_DIR) $<
|
|
|
|
coverletter.pdf: $(EXAMPLES_DIR)/coverletter.tex
|
|
$(CC) -output-directory=$(EXAMPLES_DIR) $<
|
|
|
|
clean:
|
|
rm -rf $(EXAMPLES_DIR)/*.pdf
|