ASD/compte_rendu/Makefile

22 lines
486 B
Makefile
Raw Permalink Normal View History

2017-12-19 16:54:13 +00:00
.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