tAdd show and preview targets - brcon2020_adc - my presentation for brcon2020
 (HTM) git clone git://src.adamsgaard.dk/.brcon2020_adc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 6e919edddee952625e776006f69d1a6591fe5b7b
 (DIR) parent 7174ac723fa714e565da09516bbaf4ffda775086
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Wed, 22 Apr 2020 15:26:17 +0200
       
       Add show and preview targets
       
       Diffstat:
         M Makefile                            |       8 ++++++++
       
       1 file changed, 8 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -3,6 +3,12 @@
        src = brcon2020_adc.md
        pdf = $(src:.md=.pdf)
        
       +show: 0000-_Intro.txt
       +        -catpoint *.txt
       +
       +preview: 0000-_Intro.txt
       +        nohup st -T video -g 100x35 catpoint *.txt >/dev/null 2>&1 &
       +
        $(pdf): 0000-_Intro.txt
                cat *.txt | point2pdf $(@:.pdf=)
        
       t@@ -12,3 +18,5 @@ $(pdf): 0000-_Intro.txt
        clean:
                rm -f *.txt
                rm -f *.pdf
       +
       +.PHONY: show preview clean