mirror of
https://github.com/NohamR/Bibmath2Tex.git
synced 2026-05-24 19:58:43 +00:00
12 lines
215 B
Makefile
12 lines
215 B
Makefile
TEX=pdflatex
|
|
SRC=file.tex
|
|
OUTDIR=output
|
|
|
|
all:
|
|
@mkdir -p $(OUTDIR)
|
|
$(TEX) -output-directory=$(OUTDIR) $(SRC) -interaction=batchmode
|
|
|
|
clean:
|
|
rm -rf $(OUTDIR)/*.aux $(OUTDIR)/*.log $(OUTDIR)/*.pdf
|
|
|
|
.PHONY: all clean |