1
0
Fork 0

Add make test

main
root 2023-10-17 12:38:13 -06:00
parent 211a58a8bb
commit 3235252799
3 changed files with 17 additions and 0 deletions

View File

@ -47,6 +47,12 @@ To just make a cover:
make cover
```
To do a single test run to see if the LaTeX compiles:
```
make test
```
To clean:
```

View File

@ -11,6 +11,10 @@ cover:
$(MAKE) -C src cover
mv src/Cover.pdf .
test:
$(MAKE) clean
$(MAKE) -C src test
clean:
rm -f *.pdf
$(MAKE) clean -C src

View File

@ -63,6 +63,13 @@ cover:
-interaction=nonstopmode \
Cover.tex
test:
xelatex \
-halt-on-error \
-shell-escape \
-interaction=nonstopmode \
-no-pdf \
AIDoc.tex
clean:
rm -fr _minted-*
rm -f *.aux