URI:
       tClean up makefile and fix upload target - cv - curriculum vitae
  HTML git clone git://src.adamsgaard.dk/cv
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
   DIR commit 6322cc8f36ec15468f9d0ea545c9be3127a731e7
   DIR parent 2afc3ae3797aecbbf22142a3f42277fe08fdb158
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Sat, 14 Sep 2019 20:46:50 +0200
       
       Clean up makefile and fix upload target
       
       Diffstat:
         M Makefile                            |      17 ++---------------
       
       1 file changed, 2 insertions(+), 15 deletions(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       t@@ -1,22 +1,9 @@
       -# Run LaTeX on your LaTeX file;
       -# Run BiBTeX on your LaTeX file;
       -# Open the new .bbl file containing the reference list and copy all the contents into your LaTeX file after the acknowledgments section;
       -# Comment out the old \bibliographystyle and \bibliography commands;
       -# Run LaTeX on your new file before submitting.
       -
        default: upload
        
        all: cv.pdf
        
        upload: cv.pdf
       -        #scp $< adc@fh.cs.au.dk:~/public_html_cs/files/
       -        #eval $(ssh-agent)
       -        #ssh-add ~/.ssh/google-cloud-ssh-key
       -        scp $< debvm:/var/www/html/files/
       -        #scp $< ad@adamsgaard.dk:/var/www/html/files/
       -
       -view: cv.pdf
       -        xdg-open $< &
       +        scp $< www@adamsgaard.dk:/var/www/html/files/
        
        cv.pdf: cv.tex
                lualatex $<
       t@@ -39,4 +26,4 @@ clean:
        edit: cv.tex
                $(EDITOR) cv.tex
        
       -e: edit
       +.PHONY: default all upload clean edit