📄 makea.bat
字号:
@echo off
rem **********************************************************************
rem
rem Filename: make.bat
rem
rem Description: batchfile to use if only modification to the platform
rem source are made. Speeds up development.
rem
rem THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
rem ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
rem THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
rem PARTICULAR PURPOSE.
rem
rem Use of this source code is subject to the terms of the Cirrus end-user
rem license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
rem If you did not accept the terms of the EULA, you are not authorized to
rem use this source code. For a copy of the EULA, please see the
rem EULA.RTF on your install media.
rem
rem Copyright(c) Cirrus Logic Corporation 2002, All Rights Reserved
rem
rem **********************************************************************
@echo on
build -c
if exist build.err goto end
del target\%_TGTCPU%\%WINCEDEBUG%\nk.exe
del %_FLATRELEASEDIR%\config.bib
del %_FLATRELEASEDIR%\platform.bib
del %_FLATRELEASEDIR%\kern.exe
del %_FLATRELEASEDIR%\kernkitl.exe
del %_FLATRELEASEDIR%\kernkitlprof.exe
del %_FLATRELEASEDIR%\gwes.exe
del %_FLATRELEASEDIR%\touch.dll
del %_FLATRELEASEDIR%\kbdps2eng.dll
del %_FLATRELEASEDIR%\kbdcherryeng.dll
del %_FLATRELEASEDIR%\ddi.dll
del %_FLATRELEASEDIR%\wavedev.dll
del %_FLATRELEASEDIR%\eboot.*
copy files\config.bib %_FLATRELEASEDIR%
copy files\platform.bib %_FLATRELEASEDIR%
copy files\platform.dat %_FLATRELEASEDIR%
copy files\platform.db %_FLATRELEASEDIR%
copy files\platform.loc %_FLATRELEASEDIR%
copy files\platform.reg %_FLATRELEASEDIR%
copy %_PROJECTROOT%\oak\files\project.bib %_FLATRELEASEDIR%
copy target\%_TGTCPU%\%WINCEDEBUG%\*.rel %_FLATRELEASEDIR%
copy target\%_TGTCPU%\%WINCEDEBUG%\*.map %_FLATRELEASEDIR%
copy target\%_TGTCPU%\%WINCEDEBUG%\*.pdb %_FLATRELEASEDIR%
copy target\%_TGTCPU%\%WINCEDEBUG%\*.exe %_FLATRELEASEDIR%
copy target\%_TGTCPU%\%WINCEDEBUG%\*.dll %_FLATRELEASEDIR%
copy target\%_TGTCPU%\%WINCEDEBUG%\eboot.* %_FLATRELEASEDIR%
makeimg
:end
rem end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -