forked from gvegayon/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for building without installation
- Loading branch information
1 parent
3e61d89
commit c3812f0
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
clear all | ||
set more off | ||
set trace off | ||
mata mata clear | ||
// cd i:/george/comandos_paquetes_librerias/stata/devtools | ||
set matastrict on | ||
|
||
mata mata mlib create ldevtools, replace | ||
do devtools.mata | ||
do dt_capture.mata | ||
do dt_create_pkg.mata | ||
do dt_git_install.mata | ||
do dt_install_on_the_fly.mata | ||
do dt_list_files.mata | ||
do dt_moxygen.mata | ||
do dt_read_txt.mata | ||
do dt_restart_stata.mata | ||
do dt_shell.mata | ||
do dt_st_chars.mata | ||
do dt_stata_capture.mata | ||
do dt_stata_path.mata | ||
|
||
mata mata mlib add ldevtools dt_*(), complete | ||
|
||
/* Documenting source code */ | ||
mata dt_moxygen(("devtools.mata","dt_capture.mata","dt_st_chars.mata","dt_moxygen.mata"), "devtools_source.hlp") | ||
|
||
/* | ||
Creates a pkg file | ||
mata | ||
dt_create_pkg( | ||
"devtools Tools for the stata developer.", | ||
("ldevtools.mlib","devtools_source.hlp","mf_dt_capture.sthlp"), | ||
1, | ||
"George Vega, James Fiedler" | ||
) | ||
end | ||
*/ | ||
|
||
mata dt_install_on_the_fly("devtools") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters