-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (24 loc) · 856 Bytes
/
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
### Hooks for the editor to set the default target
current: pngtarget
target pngtarget pdftarget vtarget acrtarget: plot.Rout
##################################################################
# make files
# local.mk should not be a source file; use it to reset the value of the variable local
Sources = Makefile inc.mk
##################################################################
# Scripts
scripts = pdfcheck.pl Rprep.pl cw.pl Rtrim.pl Rcalc.pl
rscripts = summary.R objects.R
Sources += $(scripts) $(rscripts)
######################################################################
# Examples
Sources += add.R
add.Rout: add.R
plot.Rout: plot.R
######################################################################
local = default
md = ../make/
rrd = ../RR/
-include $(md)/local.mk
include $(md)/$(local).mk
include $(rrd)/inc.mk