Skip to content

Instantly share code, notes, and snippets.

View broskisworld's full-sized avatar

Josh Bosley broskisworld

View GitHub Profile
@katyo
katyo / Makefile
Last active August 18, 2021 21:04
Excellon Specification
all: excellon.html excellon.pdf
excellon.html: excellon.md
@pandoc $< -o $@
excellon.pdf.md: excellon.md
@cat $< | sed 's/\.png/\.pdf/g' > $@
excellon.pdf: excellon.pdf.md
@pandoc $< --latex-engine=pdflatex -o $@