-
Notifications
You must be signed in to change notification settings - Fork 29
/
make.do
49 lines (40 loc) · 2.37 KB
/
make.do
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
43
44
45
46
47
48
49
// the 'make.do' file is automatically created by 'github' package.
// execute the code below to generate the package installation files.
// DO NOT FORGET to update the version of the package, if changed!
// for more information visit http://github.com/haghish/github
make rcall, replace toc pkg version(3.1.0) ///
license("MIT") ///
author("E. F. Haghish") ///
email("[email protected]") ///
url("http://github.com/haghish") ///
title("seamless R in Stata") ///
description("call R in Stata and enable automated data communication") ///
install("call_return.ado;rcallscript.ado;" ///
"matconvert.ado;matconvert.sthlp;" ///
"matexport.ado;matexport.sthlp;" ///
"R.ado;rcall_check.ado;rcall_check.sthlp;rcall_counter.ado;" ///
"rcall_interactive.ado;rcall_synchronize.ado;rcall.ado;" ///
"rcall.sthlp;rprofile.site;stata.output.r;varconvert.ado") ///
ancillary("")
/*
Generating the package documentation
====================================
The package documentation is written in Markdown language. The MARKDOC package
extract these documentation and create the Stata help files as well as Markdown
documentation for GitHub Wiki. Learn more about MARKDOC here:
https://github.com/haghish/markdoc
Generating Stata Help Files
---------------------------
*/
markdoc "rcall.ado", export(sthlp) replace
markdoc "rcall_check.ado", export(sthlp) replace
markdoc "matexport.ado", export(sthlp) replace
markdoc "matconvert.ado", export(sthlp) replace
// generate the Markdown documentation for GitHub
markdoc "rcall.ado", mini export(md) replace
markdoc "rcall_check.ado", mini export(md) replace
markdoc "matexport.ado", mini export(md) replace
markdoc "matconvert.ado", mini export(md) replace
markdoc "vignette.do", export(tex) toc replace master ///
title("rcall v. 3.0 package vignette") ///
author("E. F. Haghish")