tRemove GNU Make-specific syntax - cv - curriculum vitae
(HTM) git clone git://src.adamsgaard.dk/cv
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 0e0889f163eb83107573e70a0f267efb2ae6ccc6
(DIR) parent 9057db80efcbb5b2ffcefddc0518f73146ffea98
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Fri, 8 Nov 2019 19:10:39 +0100
Remove GNU Make-specific syntax
Diffstat:
M Makefile | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
---
(DIR) diff --git a/Makefile b/Makefile
t@@ -3,25 +3,25 @@ default: upload
all: cv.pdf
upload: cv.pdf
- scp $< www@adamsgaard.dk:/var/www/html/files/
+ scp cv.pdf www@adamsgaard.dk:/var/www/html/files/
cv.pdf: cv.tex
- lualatex $<
- lualatex $<
+ lualatex cv.tex
+ lualatex cv.tex
clean:
- $(RM) *.pdf
- $(RM) *.log
- $(RM) *.toc
- $(RM) *.out
- $(RM) *.aux
- $(RM) *.bbl
- $(RM) *.blg
- $(RM) *.eps
- $(RM) *.dvi
- $(RM) *.nav
- $(RM) *.snm
- $(RM) *.vrb
+ rm -f *.pdf
+ rm -f *.log
+ rm -f *.toc
+ rm -f *.out
+ rm -f *.aux
+ rm -f *.bbl
+ rm -f *.blg
+ rm -f *.eps
+ rm -f *.dvi
+ rm -f *.nav
+ rm -f *.snm
+ rm -f *.vrb
edit: cv.tex
$(EDITOR) cv.tex