⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 buildcleanup.bat

📁 如题 就是 这东西 为什么非要我 说到 20个 字 呢 看看这回 够 不
💻 BAT
字号:
@rem buildcleanup.bat
@rem removes all the files that abld can remove.
@rem %1 should be path
@rem %2 should be command line platform (e.g. wins or winscw)
@rem %3, optional, should be ide platform (e.g. vc6 or cw_ide or "")
echo OFF
@rem
@rem To do this requires it to first have a makefile 
@rem (which requires exported headers to be in place)
@rem
echo Cleaning %2 
echo from %1
pushd %1

call bldmake bldfiles
call abld export


if "%3" EQU "cw_ide" goto ide
if "%3" EQU "vc6" goto ide
if "%3" EQU "winscw" goto finish

:ide
call abld makefile %2
call abld makefile %3
call abld reallyclean %3 udeb
call abld export
call bldmake clean
goto finish


:finish
@rem call abld reallyclean %2 udeb
call bldmake clean
popd

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -