]> git.donarmstrong.com Git - using_make_for_science.git/blobdiff - using_make_for_science.Rnw
update .gitignore for minted usage
[using_make_for_science.git] / using_make_for_science.Rnw
index 2aa23c99957c6397ee782f8881360df5b90809bc..79034541d234b605c9e182ba2f66137b58d8dce3 100644 (file)
@@ -41,6 +41,8 @@
   \pagestyle{fancy}
 }
 
+\usepackage{minted}
+
 \mode<presentation>{ 
   \usetheme{CambridgeUS}
   % http://identitystandards.illinois.edu/graphicstandardsmanual/generalguidelines/colors.html
 
 \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}