facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
18 lines
403 B
Batchfile
18 lines
403 B
Batchfile
@echo off
|
|
rem Used by the buildbot "clean" step.
|
|
|
|
setlocal
|
|
set root=%~dp0..\..
|
|
set pcbuild=%root%\PCbuild
|
|
|
|
echo Deleting build
|
|
call "%pcbuild%\build.bat" -t Clean -k %*
|
|
call "%pcbuild%\build.bat" -t Clean -k -d %*
|
|
|
|
echo Deleting .pyc/.pyo files ...
|
|
del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo"
|
|
|
|
echo Deleting test leftovers ...
|
|
rmdir /s /q "%root%\build"
|
|
del /s "%pcbuild%\python*.zip"
|