Maximilian Keßler
6d8a131865
Instead of an ugly Makefile structure, we now use a single compile script that collects all the files in build/doc.
5 lines
196 B
Bash
Executable file
5 lines
196 B
Bash
Executable file
#! /bin/bash
|
|
# Compiles all documentation files in repository
|
|
BUILD_COMMAND="latexmk -output-directory=$(pwd)/.compile $1"
|
|
|
|
find doc -type f -name "*.tex" -execdir sh -c "$BUILD_COMMAND" -- {} \;
|