Initial commit.
This commit is contained in:
13
Makefile
Normal file
13
Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
FILE := main
|
||||
OUT := build
|
||||
|
||||
all:
|
||||
mkdir -p $(OUT)
|
||||
pdflatex -output-directory $(OUT) $(FILE)
|
||||
biber $(OUT)/$(FILE)
|
||||
cd $(OUT) && makeglossaries $(FILE)
|
||||
pdflatex -output-directory $(OUT) $(FILE)
|
||||
pdflatex -output-directory $(OUT) $(FILE)
|
||||
|
||||
clean:
|
||||
rm -rf $(OUT)
|
||||
Reference in New Issue
Block a user