Revision: 1165 Author: [email protected] Date: Wed Aug 5 12:57:23 2009 Log: Add Windows batch file to generate device files http://code.google.com/p/jallib/source/detail?r=1165
Added: /trunk/tools/make_devfiles_win32.bat ======================================= --- /dev/null +++ /trunk/tools/make_devfiles_win32.bat Wed Aug 5 12:57:23 2009 @@ -0,0 +1,37 @@ +REM ************************************************************************************* +REM Script to generate the JAL device files +REM ************************************************************************************* +REM +REM download the regina34w32.exe, for example from +REM for example from http://mirror.optus.net/sourceforge/r/re/regina-rexx/ +REM install regina34w32.exe the package +REM Download the rexx regutil library from http://pages.interlog.com/~ptjm/software.html +REM unzip the package, copy the rexxutil.dll in the regina install directory +REM make sure the system PATH includes the regina install directory +REM run this script +REM +REM ************************************************************************************* + + +mkdir d:\temp +mkdir d:\temp\mplab833 +mkdir "d:\temp\mplab833\MPASM Suite" +mkdir "d:\temp\mplab833\MPASM Suite\LKR" +mkdir "d:\temp\mplab833\MPLAB IDE" +mkdir "d:\temp\mplab833\MPLAB IDE\device" + +del "d:\temp\mplab833\MPASM Suite\LKR\*.*" /S /F /Q +del "d:\temp\mplab833\MPLAB IDE\device" /S /F /Q + + +copy "D:\pic\Microchip\MPASM Suite\LKR\*.*" "d:\temp\mplab833\MPASM Suite\LKR\" +copy "D:\pic\Microchip\MPLAB IDE\device\*.*" "d:\temp\mplab833\MPLAB IDE\device\" + +subst k: /d +subst k: d:\temp + +mkdir test +del test\*.* /S /F /Q + +regina.exe Dev2Jal.cmd test + --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jallib" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jallib?hl=en -~----------~----~----~----~------~----~------~--~---
