From e9c81f9f40187bc4701ac539d110003e92b9ca69 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 2 Mar 2020 02:55:00 +0000 Subject: Described the first analysis phase with a demo subMakefile Until now, there was no explanation on an actual analysis phase, therefore with this commit an example scenario with a readable Makefile is included. The Data lineage graph was also simplified to both be more readable, and also to correspond to this new explanation and subMakefile. Some random edits/typos were also corrected and some references added for discussion. --- tex/src/preamble-style.tex | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'tex/src/preamble-style.tex') diff --git a/tex/src/preamble-style.tex b/tex/src/preamble-style.tex index 9556f54..e20c73c 100644 --- a/tex/src/preamble-style.tex +++ b/tex/src/preamble-style.tex @@ -135,11 +135,16 @@ \renewcommand\footrulewidth{0.0pt} } +%% For creating color boxes +\usepackage[many]{tcolorbox} + %% Custom macros \newcommand{\inlinecode}[1]{\textcolor{blue!35!black}{\texttt{#1}}} %% Example Makefile macros -\newcommand{\mkcomment}[1]{\textcolor{red!35!white}{#1}} +\newcommand{\mkcomment}[1]{\textcolor{red!70!white}{\# #1}} +\newcommand{\mkvar}[1]{\textcolor{orange!40!black}{#1}} \newcommand{\mktarget}[1]{\textcolor{blue!40!black}{#1}} -\newcommand{\mkprereq}[1]{\textcolor{green!30!black}{#1}} -\newcommand{\mktab}[1]{\textcolor{black!25!white}{\_\_\_TAB\_\_\_}} +\newcommand{\mkprog}[1]{\textcolor{green!30!black}{#1}} +\newcommand{\mktab}[1]{\textcolor{black!30!white}{\_\_\_TAB\_\_\_}} +\newcommand{\recipecomment}[1]{{ }{ }{ }{ }{ }{ }{ }{ }{ }\mkcomment{#1}} -- cgit v1.2.1