1
0
mirror of https://github.com/pConst/basic_verilog.git synced 2025-01-28 07:02:55 +08:00
basic_verilog/scripts/clean_quartus.bat

53 lines
1.3 KiB
Batchfile
Raw Normal View History

2020-05-22 11:45:23 +03:00
@echo off
rem ------------------------------------------------------------------------------
2020-05-22 14:47:06 +03:00
rem clean_quartus.bat
2020-05-22 11:45:23 +03:00
rem Konstantin Pavlov, pavlovconst@gmail.com
rem ------------------------------------------------------------------------------
rem Use this file as a boilerplate for your custom clean script
rem for Quartus projects
for /R %%f in (*.qpf) do (
echo "Project name is %%~nf"
rem Common junk files
del /s /q .\%%~nf.qws
del /s /q .\c5_pin_model_dump.txt
del /s /q .\%%~nf.ipregen.rpt
del /s /f /q .\.qsys_edit\*
rmdir /s /q .\.qsys_edit\
del /s /q .\%%~nf_assignment_defaults.qdf
rem Compilation databases
del /s /f /q .\db\*
rmdir /s /q .\db\
del /s /f /q .\incremental_db\*
rmdir /s /q .\incremental_db\
del /s /f /q .\greybox_tmp\*
rmdir /s /q .\greybox_tmp\
rem Output directory
del /s /f /q .\out\*
rmdir /s /q .\out\
del /s /f /q .\output\*
rmdir /s /q .\output\
del /s /f /q .\OUTPUT\*
rmdir /s /q .\OUTPUT\
rem Design space explorer files
del /s /f /q .\dse\*
rmdir /s /q .\dse\
del /s /q .\dse1_base.qpf
del /s /q .\dse1_base.qsf
del /s /q .\%%~nf.dse.rpt
del /s /q .\%%~nf.archive.rpt
rem Early power estimator files
del /s /q .\%%~nf_early_pwr.csv
)
2020-05-22 11:45:23 +03:00
pause
2021-10-28 10:02:41 +03:00
goto :eof