ASD/compte_rendu/Makefile
2017-12-19 17:54:13 +01:00

22 lines
486 B
Makefile

.PHONY:
.SUFFIXES:
COMP = mdbg
OUT = cours
TITLE = "Microéconomie"
PACKAGE = "{{MyPack2}}"
AUTHOR = "Hugo LEVY--FALK"
DOCUMENTCLASS = "article"
all:
$(COMP) $(OUT).mdbg --title $(TITLE) --packages $(PACKAGE) --date \\today --documentclass $(DOCUMENTCLASS) --author $(AUTHOR)
lualatex --shell-escape $(OUT).tex
lualatex --shell-escape $(OUT).tex
rm $(OUT).aux $(OUT).log $(OUT).out $(OUT).toc
rm $(OUT).tex
clean:
rm $(OUT).aux $(OUT).log $(OUT).out $(OUT).toc
rm $(OUT).tex