added git-introduction written for CT at InES

This commit is contained in:
scbj
2026-06-24 11:50:41 +02:00
parent 7b909ae4da
commit dfce75c068
3 changed files with 791 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
SHELL := /usr/bin/env bash
MD_FILES += readme.md
PDF_FILES := $(MD_FILES:.md=.pdf)
VERBOSITY :=
.PHONY: all clean clean_all test pdf repdf remove_pdf debug_pdf gfm
clean_all:: remove_pdf
pdf: $(PDF_FILES)
repdf: remove_pdf pdf
remove_pdf:
@rm -f $(PDF_FILES) || true
debug_pdf: VERBOSITY := --verbose
debug_pdf: $(PDF_FILES)
%.pdf: %.md
pandoc \
--pdf-engine pdflatex \
--listings \
--template ../template.tex \
-f markdown \
-t pdf \
$(VERBOSITY) \
-o $@ \
$<