CV/Makefile
Dan Anglin 4f47c46715
fix: update CV and project
- Added website link.
- Changed the Monitoring and Alerting category to Observability.
- Edited Adarga details.
- Added a category for agile techniques.
- Add Makefile for spell checking and PDF generation.
2023-10-02 17:53:20 +01:00

11 lines
258 B
Makefile

.PHONY: spellcheck pdf
INPUT ?= cv.json
TIMESTAMP = $(shell date '+%Y-%m-%d_%H-%M')
OUTPUT ?= cv-DanAnglin-$(TIMESTAMP).pdf
spellcheck:
aspell -d en_GB -p ./.aspell/.aspell.en.pws list < $(INPUT)
pdf:
spruce generate --input $(INPUT) --output $(OUTPUT)