Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
added the doxygen from hwlib, added the target for the teensy_40 and …
Browse files Browse the repository at this point in the history
…the chip, added some stupid pin_in code just to test
  • Loading branch information
OscarKro committed Sep 14, 2020
1 parent a93d2d3 commit 82f189b
Show file tree
Hide file tree
Showing 8 changed files with 3,917 additions and 0 deletions.
23 changes: 23 additions & 0 deletions latex/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
LATEX_CMD=pdflatex

all: refman.pdf

pdf: refman.pdf

refman.pdf: clean refman.tex
$(LATEX_CMD) refman
makeindex refman.idx
$(LATEX_CMD) refman
latex_count=8 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\
do \
echo "Rerunning latex...." ;\
$(LATEX_CMD) refman ;\
latex_count=`expr $$latex_count - 1` ;\
done
makeindex refman.idx
$(LATEX_CMD) refman


clean:
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
Loading

0 comments on commit 82f189b

Please sign in to comment.