-
-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathMakefile
42 lines (34 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
## No GNUmake for R so replacing efficient wildcard ops with explicit enumeration
## Remove spaces between ': =' and '$ ( ... )' to re-activate
##rnwsources : = $ ( wildcard *.Rnw )
##rnwvignettes : = $ ( rnwsources:.Rnw=.pdf )
rnwsources = Rcpp-attributes.Rnw \
Rcpp-extending.Rnw \
Rcpp-FAQ.Rnw \
Rcpp-introduction.Rnw \
Rcpp-jss-2011.Rnw \
Rcpp-libraries.Rnw \
Rcpp-modules.Rnw \
Rcpp-package.Rnw \
Rcpp-quickref.Rnw \
Rcpp-sugar.Rnw
rnwvignettes = Rcpp-attributes.pdf \
Rcpp-extending.pdf \
Rcpp-FAQ.pdf \
Rcpp-introduction.pdf \
Rcpp-jss-2011.pdf \
Rcpp-libraries.pdf \
Rcpp-modules.pdf \
Rcpp-package.pdf \
Rcpp-quickref.pdf \
Rcpp-sugar.pdf
%.tex: %.Rnw
Rscript -e 'Sweave("$<")'
%.pdf: %.tex
Rscript -e 'tools::texi2pdf("$<", texi2dvi="pdflatex")'
Rscript -e 'tools::texi2pdf("$<", texi2dvi="pdflatex")'
Rscript -e 'tools::compactPDF("$@", gs_quality="ebook")'
all: ${rnwvignettes}
@rm -f *.aux *.log *.tex
clean:
@rm -f *.aux *.log *.tex