mirror of
https://github.com/NohamR/Bibmath2Tex.git
synced 2026-05-25 12:17:12 +00:00
13 lines
222 B
Makefile
13 lines
222 B
Makefile
TEX=pdflatex
|
|
SRC=essaie.tex
|
|
OUTDIR=output
|
|
OUTPDF=$(OUTDIR)/essaie.pdf
|
|
|
|
all:
|
|
@mkdir -p $(OUTDIR)
|
|
$(TEX) -output-directory=$(OUTDIR) $(SRC)
|
|
|
|
clean:
|
|
rm -rf $(OUTDIR)/*.aux $(OUTDIR)/*.log $(OUTDIR)/*.pdf
|
|
|
|
.PHONY: all clean |