Add build tooling and dependency docs

This commit is contained in:
Ethan Paul 2022-03-26 15:08:49 -04:00
parent a292d50ab4
commit c657fd2673
No known key found for this signature in database
GPG Key ID: 6A337337DF6B5B1A
2 changed files with 24 additions and 0 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
# personal resume makefile
.PHONY: help
# Put it first so that "make" without argument is like "make help"
# Adapted from:
# https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help: ## List Makefile targets
$(info Makefile documentation)
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-10s\033[0m %s\n", $$1, $$2}'
clean: ## Clean up temp resources
rm --recursive --force publish/
rm Awesome-CV/*.log
pdf: ## Build the resume PDF
mkdir --parents publish/
xelatex -output-directory=publish/ resume.tex content/

View File

@ -4,3 +4,10 @@
This work is licensed under a
[Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License](https://creativecommons.org/licenses/by-nc-nd/4.0/).
After cloning, be certain to initialize the git submodules.
## System requirements (Fedora):
* `tetex`
* `texlive-fontawesome5`
* `texlive-sourcesanspro`