mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-01-23 06:16:12 +00:00
37 lines
1.3 KiB
Batchfile
37 lines
1.3 KiB
Batchfile
@IF "%~1" == "" GOTO help
|
|
@IF "%APPLEWIN_ROOT%" == "" GOTO help2
|
|
|
|
@MKDIR "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\A2_BASIC.SYM" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\APPLE2E.SYM" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\DELREG.INF" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\DebuggerAutoRun.txt" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\GNU General Public License.txt" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\History.txt" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\DOS 3.3 System Master - 680-0210-A.dsk" "%~1"
|
|
@ATTRIB +r "%~1\DOS 3.3 System Master - 680-0210-A.dsk"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\BLANK.DSK" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\bin\ProDOS_2_4_3.po" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\docs\Debugger_Changelog.txt" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\help\AppleWin.chm" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\Release\AppleWin.exe" "%~1"
|
|
@COPY /Y "%APPLEWIN_ROOT%\x64\Release\AppleWin-x64.exe" "%~1"
|
|
@MKDIR "%~1\snesmax"
|
|
@COPY /Y "%APPLEWIN_ROOT%\snesmax\*" "%~1\snesmax"
|
|
CD "%~1"
|
|
"C:\Program Files\7-Zip\7z.exe" a ..\AppleWin"%~1".zip *
|
|
"C:\Program Files\7-Zip\7z.exe" a ..\AppleWin"%~1"-PDB.zip "%APPLEWIN_ROOT%\Release\AppleWin.pdb"
|
|
"C:\Program Files\7-Zip\7z.exe" a ..\AppleWin"%~1"-PDB.zip "%APPLEWIN_ROOT%\x64\Release\AppleWin-x64.pdb"
|
|
CD ..
|
|
@GOTO end
|
|
|
|
:help
|
|
@ECHO %0 "<new version>"
|
|
@ECHO EG: %0 1.29.8.0
|
|
@GOTO end
|
|
|
|
:help2
|
|
@ECHO APPLEWIN_ROOT env variable is not defined
|
|
|
|
:end
|