2020-11-03 16:54:58 +03:00
|
|
|
@echo off
|
|
|
|
rem ------------------------------------------------------------------------------
|
2021-05-27 12:54:51 +03:00
|
|
|
rem hard_clean_vivado.bat
|
2020-11-03 16:54:58 +03:00
|
|
|
rem Konstantin Pavlov, pavlovconst@gmail.com
|
|
|
|
rem ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
rem Use this file as a boilerplate for your custom clean script
|
|
|
|
rem for Vivado/Vitis projects
|
|
|
|
|
|
|
|
SET PROJ=a701_base_prj
|
|
|
|
|
|
|
|
del /s /f /q .\%PROJ%.cache\*
|
|
|
|
rmdir /s /q .\%PROJ%.cache\
|
|
|
|
|
|
|
|
del /s /f /q .\%PROJ%.hw\*
|
|
|
|
rmdir /s /q .\%PROJ%.hw\
|
|
|
|
|
|
|
|
del /s /f /q .\%PROJ%.runs\*
|
|
|
|
rmdir /s /q .\%PROJ%.runs\
|
|
|
|
|
|
|
|
del /s /f /q .\%PROJ%.sim\*
|
|
|
|
rmdir /s /q .\%PROJ%.sim\
|
|
|
|
|
|
|
|
del /s /f /q .\.Xil\*
|
|
|
|
rmdir /s /q .\.Xil\
|
|
|
|
|
|
|
|
del /s /f /q .\*.jou
|
|
|
|
del /s /f /q .\*.log
|
|
|
|
|
|
|
|
pause
|
|
|
|
exit
|