aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--R/Makefile3
-rw-r--r--R/tags.R1
2 files changed, 2 insertions, 2 deletions
diff --git a/R/Makefile b/R/Makefile
index b5d27e89..1f894816 100644
--- a/R/Makefile
+++ b/R/Makefile
@@ -15,8 +15,7 @@ lossdistrib_1.0.tar.gz:
R CMD build lossdistrib
tags:
- R CMD rtags -o TAGS
- R CMD rtags -o TAGS --append lossdistrib
+ Rscript tags.R
.PHONY: clean
diff --git a/R/tags.R b/R/tags.R
new file mode 100644
index 00000000..f5a59f48
--- /dev/null
+++ b/R/tags.R
@@ -0,0 +1 @@
+rtags(c(".", "lossdistrib/R"), ofile = "TAGS")