-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclean.bat
More file actions
20 lines (17 loc) · 715 Bytes
/
clean.bat
File metadata and controls
20 lines (17 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
set /p = Cleaning workspace... <nul
rd /s /q %~dp0project\.Xil 2>nul
rd /s /q %~dp0project\femto.cache 2>nul
rd /s /q %~dp0project\femto.hw 2>nul
rd /s /q %~dp0project\femto.ip_user_files 2>nul
rd /s /q %~dp0project\femto.runs 2>nul
rd /s /q %~dp0project\femto.sim 2>nul
del /f /q %~dp0project\*.jou 2>nul
del /f /q %~dp0project\*.log 2>nul
del /f /q %~dp0project\*.str 2>nul
del /f /q %~dp0src\out.* 2>nul
del /f /q %~dp0src\*.hex 2>nul
del /f /q %~dp0src\*.bin 2>nul
del /f /q %~dp0src\nor.h 2>nul
echo Done
pause