forked from maartenteaches/mkproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp_main.mpb
28 lines (24 loc) · 854 Bytes
/
mp_main.mpb
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
<header>
<mkproject> boilerplate
<version> 2.1.0
<label> main project.do file
<description>
{pstd}
This is a template for the main .do file in a project. This is the .do file that
calls all other .do files.
{pstd}
This is the only file that can use an absolute path. All
other .do files in the project must only use relative paths. That way, if you
want to share your project with someone else, or if you need to run it on another
computer, you only have to change the {cmd:cd} command in this file and it will run.
</description>
</header>
<body> -------------------------------------------------------------------------
version <stata_version>
clear all
macro drop _all
cd "<basedir>"
do <abbrev>_dta01.do // some comment
do <abbrev>_ana01.do // some comment
exit
</body> ------------------------------------------------------------------------