21 lines
486 B
Makefile
21 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
|
|
|