Skip to content

Commit

Permalink
Add LM32 MMU documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fallen authored and Sebastien Bourdeauducq committed Aug 9, 2013
1 parent cf2281b commit 4c0f6c5
Show file tree
Hide file tree
Showing 2 changed files with 481 additions and 0 deletions.
17 changes: 17 additions & 0 deletions doc/Makefile
@@ -0,0 +1,17 @@
TEX=mmu.tex

RM ?= rm -f

PDF=$(TEX:.tex=.pdf)
AUX=$(TEX:.tex=.aux)
LOG=$(TEX:.tex=.log)

all: $(PDF)

%.pdf: %.tex
texi2pdf $<

clean:
$(RM) $(PDF) $(LOG) $(AUX)

.PHONY: clean

0 comments on commit 4c0f6c5

Please sign in to comment.