commit 3cb8bacdac40431d0e339dd940b3b20849a0c060 parent f079cbd37bcd33e98c26667e379ee83cb2901981 Author: Chris Bracken <chris@bracken.jp> Date: Sun, 29 Oct 2023 09:38:56 -0700 Add Makefile Adds a Makefile with clean, formal_letter, and japanese targets. Diffstat:
A | Makefile | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,10 @@ +.PHONY: clean + +clean: + rm -f *.aux *.log *.pdf + +letter_en.pdf: letter_en.latex + lualatex $^ + +japanese.pdf: japanese.latex + lualatex $^