Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dothething1DA authored Sep 16, 2024
1 parent f699cf1 commit 0a44d2e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ help:
@echo " make fast - to build KACTL, quickly (only runs LaTeX once)"
@echo " make kactl - to build KACTL"
@echo " make clean - to clean up the build process"
@echo " make veryclean - to clean up and remove kactl.pdf"
@echo " make veryclean - to clean up and remove template.pdf"
@echo " make test - to run all the stress tests in stress-tests/"
@echo " make test-compiles - to test compiling all headers"
@echo " make help - to show this information"
Expand All @@ -19,17 +19,17 @@ help:

fast: | build
$(LATEXCMD) content/kactl.tex </dev/null
cp build/kactl.pdf kactl.pdf
cp build/template.pdf template.pdf

kactl: test-session.pdf | build
$(LATEXCMD) content/kactl.tex && $(LATEXCMD) content/kactl.tex
cp build/kactl.pdf kactl.pdf
cp build/template.pdf template.pdf

clean:
cd build && rm -f kactl.aux kactl.log kactl.tmp kactl.toc kactl.pdf kactl.ptc
cd build && rm -f kactl.aux kactl.log kactl.tmp kactl.toc template.pdf kactl.ptc

veryclean: clean
rm -f kactl.pdf test-session.pdf
rm -f template.pdf test-session.pdf

.PHONY: help fast kactl clean veryclean

Expand Down

0 comments on commit 0a44d2e

Please sign in to comment.