From: Dirk B. <db...@us...> - 2006-06-08 02:49:50
|
Update of /cvsroot/win32forth/win32forth/apps/Setup In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19506/apps/Setup Modified Files: Setup.f Log Message: New command added to the setup to build the Win32Forth IDE. Index: Setup.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Setup/Setup.f,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Setup.f 8 Oct 2005 08:24:21 -0000 1.8 --- Setup.f 7 Jun 2006 16:04:21 -0000 1.9 *************** *** 125,128 **** --- 125,129 ---- ." P Rebuild Project Manager." cr cr ." S Rebuild SciEdit." cr cr + ." G Rebuild Win32forth IDE." cr cr ." A Rebuild sample applications (Player4, Solipon2, Sudoku and" cr ." PlayVirginRadio)" cr cr *************** *** 272,275 **** --- 273,282 ---- ; + : buildide + ." -- SciEdit" cr + c" WIN32FOR.EXE fload apps\Win32ForthIDE\Main.f bye" procexec + c" Win32ForthIde.exe" filecheck + ; + : buildsamples ." -- Sample applications" cr *************** *** 315,318 **** --- 322,326 ---- buildscintilla \ build SciEdit buildsamples \ build sample applications + buildide \ build Win32Forth IDE ; *************** *** 382,385 **** --- 390,394 ---- buildscintilla \ build SciEdit buildsamples \ build sample applications + buildide \ build Win32Forth IDE endedok ; *************** *** 480,483 **** --- 489,504 ---- ; + \ Scintilla Editor + \ Mittwoch, Juni 07 2006 - 18:01 dbu + : ide + cls cr + ." Win32Forth IDE requested" cr + dashline + ." Rebuilding Win32Forth IDE" cr + checkcont + buildide \ build Win32Forth IDE + endedok + ; + \ Sample applications \ new Samstag, Juni 11 2005 - 8:41 dbu *************** *** 533,536 **** --- 554,558 ---- 'P' of project endof 'S' of scintilla endof + 'G' of ide endof 'A' of samples endof |