diff options
| author | Manuel Traut <manut@mecka.net> | 2011-02-07 18:34:42 +0100 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2011-02-07 18:34:42 +0100 |
| commit | 4821ced58d50e018a8a8f9183eac0982299d94a5 (patch) | |
| tree | b3d92a37c56887586f5e98f0e403a5a1af809fc7 | |
| parent | 31b5a5b70cc12bd264c6234068410c6edff8bfb1 (diff) | |
added basics section
Signed-off-by: Manuel Traut <manut@mecka.net>
| -rw-r--r-- | basics/Makefile | 6 | ||||
| -rw-r--r-- | basics/cpu-arch/Makefile | 9 | ||||
| -rw-r--r-- | basics/cpu-arch/hints_cpu-arch_de.tex | 15 | ||||
| -rw-r--r-- | basics/section.tex | 1 |
4 files changed, 31 insertions, 0 deletions
diff --git a/basics/Makefile b/basics/Makefile new file mode 100644 index 0000000..c0c47ad --- /dev/null +++ b/basics/Makefile @@ -0,0 +1,6 @@ +SUBDIRS = `ls -1 | grep -v *.tex | grep -v Makefile` + +all clean:: + for dir in $(SUBDIRS) ; do \ + (cd $$dir && make $@); \ + done diff --git a/basics/cpu-arch/Makefile b/basics/cpu-arch/Makefile new file mode 100644 index 0000000..d641258 --- /dev/null +++ b/basics/cpu-arch/Makefile @@ -0,0 +1,9 @@ +all: + for pdf in `ls -1 *.tex` ; do \ + TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ + TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ + done + +clean: + rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out + diff --git a/basics/cpu-arch/hints_cpu-arch_de.tex b/basics/cpu-arch/hints_cpu-arch_de.tex new file mode 100644 index 0000000..62ddc81 --- /dev/null +++ b/basics/cpu-arch/hints_cpu-arch_de.tex @@ -0,0 +1,15 @@ +\documentclass{article} +\usepackage{german} +\usepackage[utf8]{inputenc} + +\begin{document} + +\section{CPU Architekturen} + +\subsection{Lernziele} +\begin{itemize} +\item Was bedeutet 8, 16, 32, \dots bit ? +\item Bedeutung MMU / keine MMU und Linux? +\item ARM, PowerPC / CELL, x86 +\end{itemize} +\end{document} diff --git a/basics/section.tex b/basics/section.tex new file mode 100644 index 0000000..e447d0f --- /dev/null +++ b/basics/section.tex @@ -0,0 +1 @@ +\section{Applikationsentwicklung} |
