1
0
mirror of https://github.com/azure-rtos/threadx synced 2025-01-30 08:02:57 +08:00
threadx/test/ports/azrtos_clean_tx_ghs.bat

11 lines
292 B
Batchfile

@ECHO OFF
ECHO INFO: Cleaning %CD%...
%AZRTOS_GHS_COMP_GBUILD% -top azure_rtos_workspace.gpj -clean tx.a txe.a sample_threadx sample_threadx_el
IF %ERRORLEVEL% NEQ 0 (
ECHO ERROR: clean failed.
EXIT /B 1
)
RMDIR /Q /S libs
DEL /Q /F test.log
ECHO INFO: Clean completed successfully!