15 lines
256 B
Makefile
15 lines
256 B
Makefile
pdf: .init-submodule-cert
|
|
latexmk
|
|
|
|
clean:
|
|
latexmk -c
|
|
|
|
clean-all:
|
|
latexmk -C
|
|
|
|
.init-submodule-cert:
|
|
@echo "[Make] Initialising git submodule for packages"
|
|
git submodule update --init --rebase
|
|
@touch .init-submodule-cert
|
|
|
|
.PHONY: pdf, clean, clean-all
|