X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=using_make_for_science.Rnw;fp=using_make_for_science.Rnw;h=79034541d234b605c9e182ba2f66137b58d8dce3;hb=bdd63bfdd95e9ca6308584f316552d891fdd75f8;hp=2aa23c99957c6397ee782f8881360df5b90809bc;hpb=f5a21d7d3ea21f787ff75ea0e90b356db9c0618c;p=using_make_for_science.git diff --git a/using_make_for_science.Rnw b/using_make_for_science.Rnw index 2aa23c9..7903454 100644 --- a/using_make_for_science.Rnw +++ b/using_make_for_science.Rnw @@ -41,6 +41,8 @@ \pagestyle{fancy} } +\usepackage{minted} + \mode{ \usetheme{CambridgeUS} % http://identitystandards.illinois.edu/graphicstandardsmanual/generalguidelines/colors.html @@ -134,6 +136,36 @@ \section{Introduction to Makefiles} +\begin{frame}[fragile]{Simple Makefile} +\begin{minted}[showtabs]{make} +hello_world: + echo "hello world" > hello_world +\end{minted} +\end{frame} + +\subsection{General Syntax} + + +\begin{frame}[fragile]{Simple Makefile} +\begin{minted}[showtabs]{make} +hello_world: + echo "hello world" > hello_world +\end{minted} +\end{frame} + +\subsection{Variables} + +\subsection{Rules} + +\subsubsection{Default Target} + +\subsubsection{Special Targets} + +\subsubsection{Pattern Rules} + +\subsection{Functions} + + \section{Examples} \subsection{This Presentation}