tex file + grab

This commit is contained in:
√(noham)²
2025-04-13 21:06:51 +02:00
parent 5d2a553c0b
commit d42ae0d105
8 changed files with 402 additions and 11 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
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