diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-07-30 14:33:51 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-08-20 15:57:32 +0200 |
| commit | 31b9a21bc2abe52f357b8ee8a25d5b895e8244d9 (patch) | |
| tree | c8d734d2ec02481fcf13b34a62531105826d70e5 | |
| parent | 005043da269d517dbc32f67c0e24ae1585fb9aec (diff) | |
| download | muhqs-game-31b9a21bc2abe52f357b8ee8a25d5b895e8244d9.tar.gz muhqs-game-31b9a21bc2abe52f357b8ee8a25d5b895e8244d9.zip | |
explicitly use bash in Makefile
| -rw-r--r-- | latex/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/latex/Makefile b/latex/Makefile index 756a498d..7e39e0a8 100644 --- a/latex/Makefile +++ b/latex/Makefile @@ -1,4 +1,5 @@ .DEFAULT_GOAL = all +SHELL := /usr/bin/bash PDFLATEX ?= pdflatex PDFTOPPM = pdftoppm @@ -88,8 +89,8 @@ $(SETS_TEX_DIR)/$(1).tex: $(wildcard $(CARDS_TEX_DIR)/$(1)/*.tex) $(MAKEFILE_LIS $(VERBOSE) echo '\input{colors.tex}' >> $$@ $(VERBOSE) echo '\input{tikzcards.tex}' >> $$@ $(VERBOSE) echo '\usepackage{standalone}' >> $$@ - $(VERBOSE) echo '\\begin{document}' >> $$@ - $(VERBOSE) echo '\\begin{center}' >> $$@ + $(VERBOSE) echo '\begin{document}' >> $$@ + $(VERBOSE) echo '\begin{center}' >> $$@ $(VERBOSE) echo '\pagestyle{empty}' >> $$@ $(VERBOSE)for card in $(wildcard $(CARDS_TEX_DIR)/$(1)/*.tex); do \ rel_card=$$$${card#"$(LATEX_ROOT)/"}; \ |
