Notepad3/Build/make_all.bat
Derick Payne 124ab91e84 Build Environment Cleanup
Build Environment Cleanup
2016-06-03 13:13:46 +02:00

33 lines
1.4 KiB
Batchfile

@ECHO OFF
rem ****************************************************************************
rem * *
rem * Notepad3 *
rem * *
rem * make_all.bat *
rem * Batch file for building Notepad3 *
rem * and creating the installer/zip packages. *
rem * Originally taken and adapted from Notepad2-mod: *
rem * http://xhmikosr.github.io/notepad2-mod/ *
rem * *
rem * *
rem * (c) Rizonesoft 2008-2016 *
rem * https://rizonesoft.com *
rem * *
rem * *
rem ****************************************************************************
SETLOCAL
CD /D %~dp0
CALL "Build.bat"
CALL "upx.bat"
CALL "sign.bat"
CALL "make_zip.bat"
CALL "make_installer.bat"
:END
TITLE Finished!
ECHO.
PAUSE
ENDLOCAL
EXIT /B