Add project structure and write part of introduction

This commit is contained in:
Andreas Tsouchlos
2025-11-18 17:44:00 +01:00
commit b77a88cf3e
12 changed files with 581 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
DOCUMENTS := $(patsubst src/%/main.tex,build/%.pdf,$(wildcard src/*/main.tex))
.PHONY: all
all: $(DOCUMENTS)
build/%.pdf: src/%/main.tex build/prepared
latexmk $<
mv build/main.pdf $@
build/prepared:
mkdir -p build
touch build/prepared
.PHONY: clean
clean:
rm -rf build