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

45 lines
1.1 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
2021-10-28 10:02:41 +03:00
SET PROJ=test
2020-05-22 11:45:23 +03:00
rem Common junk files
del /s /q .\%PROJ%.qws
del /s /q .\c5_pin_model_dump.txt
del /s /q .\%PROJ%.ipregen.rpt
del /s /f /q .\.qsys_edit\*
rmdir /s /q .\.qsys_edit\
2021-10-28 10:02:41 +03:00
del /s /q .\%PROJ%_assignment_defaults.qdf
2020-05-22 11:45:23 +03:00
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\
2020-05-22 11:45:23 +03:00
rem Output directory
2021-10-28 10:02:41 +03:00
del /s /f /q .\out\*
rmdir /s /q .\out\
2020-05-22 11:45:23 +03:00
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 .\%PROJ%.dse.rpt
del /s /q .\%PROJ%.archive.rpt
rem Early power estimator files
del /s /q .\%PROJ%_early_pwr.csv
pause
2021-10-28 10:02:41 +03:00
goto :eof