Changeset 3574 for trunk/tools
- Timestamp:
- May 19, 2000, 11:22:51 PM (25 years ago)
- Location:
- trunk/tools/vslick
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/vslick/genproject.cmd
r3436 r3574 1 /* $Id: genproject.cmd,v 1. 2 2000-04-21 22:39:32bird Exp $1 /* $Id: genproject.cmd,v 1.3 2000-05-19 21:22:49 bird Exp $ 2 2 * 3 3 * This script generates a Visual Slick project of the source and include … … 87 87 if (stream(sProjFile, 'c', 'open write' ) <> '') then do 88 88 call lineout sProjFile, '[COMPILER]' 89 call lineout sProjFile, 'MACRO=odin32_maketagfile();\n '89 call lineout sProjFile, 'MACRO=odin32_maketagfile();\n odin32_setcurrentdir();\n' 90 90 call lineout sProjFile, 'FILTEREXPANSION=1 1 0 0 1' 91 91 call lineout sProjFile, 'compile=concur|capture|clear|:Compile:&Compile,nmake %n.obj' -
trunk/tools/vslick/odin32.e
r2829 r3574 1 /* $Id: odin32.e,v 1. 3 2000-02-19 08:41:43bird Exp $1 /* $Id: odin32.e,v 1.4 2000-05-19 21:22:51 bird Exp $ 2 2 * 3 3 * Visual SlickEdit Documentation Macros. … … 304 304 if (file_eq(p_extension, 'asm')) 305 305 { 306 _insert_text("; $Id: odin32.e,v 1. 3 2000-02-19 08:41:43bird Exp $\n");306 _insert_text("; $Id: odin32.e,v 1.4 2000-05-19 21:22:51 bird Exp $\n"); 307 307 _insert_text("; \n"); 308 308 _insert_text("; \n"); … … 317 317 else 318 318 { 319 _insert_text("/* $Id: odin32.e,v 1. 3 2000-02-19 08:41:43bird Exp $\n");319 _insert_text("/* $Id: odin32.e,v 1.4 2000-05-19 21:22:51 bird Exp $\n"); 320 320 _insert_text(" * \n"); 321 321 _insert_text(" * \n"); … … 337 337 _project_update_files_retag(true,false,false,true); 338 338 } 339 340 _command void odin32_setcurrentdir() 341 { 342 _ini_get_value(_project_name,"COMPILER","WORKINGDIR", workingdir); 343 chdir(workingdir, 1); 344 }
Note:
See TracChangeset
for help on using the changeset viewer.