mtheme/Makefile
Matthias Vogelgesang d4d32b5194 Add Makefile target to build the manual
Running the PyTeX interpreter does not really work. Moreover, I don't think it's
very good idea to depend on requests for such a simple task and to get the
contributor list in the document in the first place. I guess maintaining the
list manually is giving less headaches in the long run.
2015-06-15 08:48:45 +02:00

49 lines
1 KiB
Makefile

INS = mtheme.ins
DTX = $(wildcard *.dtx)
STY = $(patsubst %.dtx,%.sty,$(wildcard beamer*.dtx))
TEXMFHOME = $(shell kpsewhich -var-value=TEXMFHOME)
INSTALL_DIR = $(TEXMFHOME)/tex/latex/mtheme
SRC = demo.tex
PDF = demo.pdf
AUX = demo.aux
TEXC := xelatex
TEXC_OPTS += -shell-escape
DOCKER_IMAGE = latex-image
DOCKER_CONTAINER = latex-container
.PHONY: clean install docker-run docker-rm
all: $(PDF)
$(AUX):
$(TEXC) $(TEXC_OPTS) $(SRC)
$(PDF): beamerthemem.sty $(AUX) $(SRC)
$(TEXC) $(TEXC_OPTS) $(SRC)
sty: $(DTX) $(INS)
@latex $(INS)
manual:
@mkdir -p .temptex
@xelatex -shell-escape -output-directory .temptex mtheme.dtx
@xelatex -shell-escape -output-directory .temptex mtheme.dtx
@cp .temptex/mtheme.pdf .
clean:
@rm -f $(PDF)
@git clean -xfd
install: $(STY)
@mkdir -p $(INSTALL_DIR)
@cp $(STY) $(INSTALL_DIR)
docker-run: docker-build
docker run --rm=true --name $(DOCKER_CONTAINER) -i -t -v `pwd`:/data $(DOCKER_IMAGE) /data/build.sh
docker-build:
docker build -t $(DOCKER_IMAGE) .
docker-rm:
docker rm $(DOCKER_CONTAINER)