This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\usepackage{adjustbox} | |
\usepackage{array} | |
\newcolumntype{R}[2]{% | |
>{\adjustbox{angle=#1,lap=\width-(#2)}\bgroup}% | |
l% | |
<{\egroup}% | |
} | |
\newcommand*\rot{\multicolumn{1}{R{45}{1em}}}% no optional argument here, please! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NOOP := rm -f | |
me: | |
@$(NOOP) | |
a: | |
@$(NOOP) | |
sandwich: | |
@if [ `whoami` = "root" ]; then echo "one sandwich coming right up!"; else echo "hah, make me!"; fi |