File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ rem ------------------------------------------------------------------------------
3
+ rem clean.bat
4
+ rem Konstantin Pavlov, pavlovconst@gmail.com
5
+ rem ------------------------------------------------------------------------------
6
+
7
+ rem Use this file as a boilerplate for your custom clean script
8
+ rem for Vivado/Vitis projects
9
+
10
+ SET PROJ = a701_base_prj
11
+
12
+ del /s /f /q .\%PROJ% .cache\*
13
+ rmdir /s /q .\%PROJ% .cache\
14
+
15
+ del /s /f /q .\%PROJ% .hw\*
16
+ rmdir /s /q .\%PROJ% .hw\
17
+
18
+ del /s /f /q .\%PROJ% .runs\*
19
+ rmdir /s /q .\%PROJ% .runs\
20
+
21
+ del /s /f /q .\%PROJ% .sim\*
22
+ rmdir /s /q .\%PROJ% .sim\
23
+
24
+ del /s /f /q .\.Xil\*
25
+ rmdir /s /q .\.Xil\
26
+
27
+ del /s /f /q .\*.jou
28
+ del /s /f /q .\*.log
29
+
30
+ pause
31
+ exit
You can’t perform that action at this time.
0 commit comments