Skip to content

Commit

Permalink
make slides implement comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chrbeckm committed Jul 5, 2024
1 parent 7c631aa commit be62bba
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion make/content/advanced.tex
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

\begin{frame}[fragile]{Expert}
Können mehrere unabhängige Auswertungen parallel ausgeführt werden? \\
→ Ja: \;\texttt{make -j4}\; (nutzt 4 Prozesse gleichzeitig, Anzahl beliebig)
→ Ja: \;\texttt{make -j4}\; (nutzt 4 Prozesse (\texttt{j}: jobs) gleichzeitig, Anzahl beliebig)

Problem: Manchmal führt \texttt{make} Skripte gleichzeitig zweimal aus (hier \texttt{plot.py})
\begin{center}
Expand Down
13 changes: 13 additions & 0 deletions make/content/build.tex
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
\headlineframe{Projekte \enquote{sauber} halten}

\begin{frame}[fragile]{\texttt{make clean}}
(Nützliche) Konvention: \texttt{make clean} löscht alle vom \texttt{Makefile} erstellten Dateien/Ordner.

\begin{center}
\begin{minted}{make}
clean:
rm plot.pdf report.pdf
\end{minted}
\end{center}

Das Projekt sollte dann so aussehen, wie vor dem ersten Ausführen von \texttt{make}.
\end{frame}

\begin{frame}[fragile]{\texttt{build}-Ordner}
\texttt{build}-Ordner: Projekt sauber halten

Expand Down
13 changes: 0 additions & 13 deletions make/content/functions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,3 @@
\item Nützlich, wenn man einen Plot bearbeitet: \texttt{make plot.pdf}
\end{itemize}
\end{frame}

\begin{frame}[fragile]{\texttt{make clean}}
(Nützliche) Konvention: \texttt{make clean} löscht alle vom \texttt{Makefile} erstellten Dateien/Ordner.

\begin{center}
\begin{minted}{make}
clean:
rm plot.pdf report.pdf
\end{minted}
\end{center}

Das Projekt sollte dann so aussehen, wie vor dem ersten Ausführen von \texttt{make}.
\end{frame}
4 changes: 2 additions & 2 deletions make/content/motivation.tex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
\end{enumerate}
\begin{itemize}
\item vergessen, Plots neu zu erstellen
\item zurück zu Schritt 1 ...
\item zurück zu Schritt 1 \dots
\end{itemize}
\end{frame}

Expand All @@ -24,7 +24,7 @@
\begin{itemize}
\item Python-Skripte
\item \TeX{}
\item etc ...
\item etc \dots
\end{itemize}
\end{itemize}
\end{frame}
Expand Down

0 comments on commit be62bba

Please sign in to comment.