24 lines
712 B
Makefile
24 lines
712 B
Makefile
all:
|
|
$(MAKE) dylan
|
|
cp CompteRendu.pdf CompteRendu-dylan.pdf
|
|
$(MAKE) samy
|
|
cp CompteRendu.pdf CompteRendu-samy.pdf
|
|
$(MAKE) victor
|
|
cp CompteRendu.pdf CompteRendu-victor.pdf
|
|
|
|
dylan:
|
|
sed 's/\\setcounter{cqd}{[0-9]}/\\setcounter{cqd}{1}/' -i CompteRendu.tex
|
|
$(MAKE) build
|
|
samy: print_output_path.svg
|
|
sed 's/\\setcounter{cqd}{[0-9]}/\\setcounter{cqd}{2}/' -i CompteRendu.tex
|
|
$(MAKE) build
|
|
victor: print_output_path.svg
|
|
sed 's/\\setcounter{cqd}{[0-9]}/\\setcounter{cqd}{3}/' -i CompteRendu.tex
|
|
$(MAKE) build
|
|
|
|
print_output_path.svg:
|
|
inkscape --export-plain-svg=print_output_path.svg --export-text-to-path print_output.svg
|
|
|
|
build:
|
|
pdflatex -synctex=1 -shell-escape -interaction=nonstopmode "CompteRendu".tex
|