From 4821ced58d50e018a8a8f9183eac0982299d94a5 Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Mon, 7 Feb 2011 18:34:42 +0100 Subject: added basics section Signed-off-by: Manuel Traut --- basics/Makefile | 6 ++++++ basics/cpu-arch/Makefile | 9 +++++++++ basics/cpu-arch/hints_cpu-arch_de.tex | 15 +++++++++++++++ basics/section.tex | 1 + 4 files changed, 31 insertions(+) create mode 100644 basics/Makefile create mode 100644 basics/cpu-arch/Makefile create mode 100644 basics/cpu-arch/hints_cpu-arch_de.tex create mode 100644 basics/section.tex 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} -- cgit v1.2.3