Skip to content

Commit 68ec411

Browse files
committed
Added gitignore and clen script for Gowin IDE projects
1 parent b4c6697 commit 68ec411

File tree

5 files changed

+52
-0
lines changed

5 files changed

+52
-0
lines changed

gitignores/.gitignore_gowin

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#------------------------------------------------------------------------------
2+
# .gitignore for Gowin IDE
3+
# Konstantin Pavlov, pavlovconst@gmail.com
4+
#------------------------------------------------------------------------------
5+
6+
# INFO ------------------------------------------------------------------------
7+
# rename the file to ".gitignore" and place into your Gowin project directory
8+
#
9+
10+
11+
# junk files
12+
*.gprj.user
13+
impl/gwsynthesis/*.html
14+
impl/gwsynthesis/*.xml
15+
impl/gwsynthesis/*.log
16+
impl/gwsynthesis/*.vg
17+
18+
# junk directories
19+
/impl/pnr
20+
/impl/temp
21+

gitignores/.gitignore_modelsim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#------------------------------------------------------------------------------
22
# .gitignore for Mentor Modelsim
3+
# published as part of https://github.com/pConst/basic_verilog
34
# Konstantin Pavlov, pavlovconst@gmail.com
45
#------------------------------------------------------------------------------
56

gitignores/.gitignore_quartus

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#------------------------------------------------------------------------------
22
# .gitignore for Intel Quartus
3+
# published as part of https://github.com/pConst/basic_verilog
34
# Konstantin Pavlov, pavlovconst@gmail.com
45
#------------------------------------------------------------------------------
56

gitignores/.gitignore_vivado

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#------------------------------------------------------------------------------
22
# .gitignore for Xilinx Vivado
3+
# published as part of https://github.com/pConst/basic_verilog
34
# Konstantin Pavlov, pavlovconst@gmail.com
45
#------------------------------------------------------------------------------
56

scripts/clean_gowin.bat

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
@echo off
2+
rem ------------------------------------------------------------------------------
3+
rem clean_gowin.bat
4+
rem published as part of https://github.com/pConst/basic_verilog
5+
rem Konstantin Pavlov, pavlovconst@gmail.com
6+
rem ------------------------------------------------------------------------------
7+
8+
rem Use this file as a boilerplate for your custom clean script
9+
rem for Gowin IDE projects
10+
11+
12+
rem preserving .\impl\gwsynthesis\test.prj file
13+
del /s /f /q .\impl\gwsynthesis\*.html
14+
del /s /f /q .\impl\gwsynthesis\*.xml
15+
del /s /f /q .\impl\gwsynthesis\*.log
16+
del /s /f /q .\impl\gwsynthesis\*.vg
17+
18+
del /s /f /q .\impl\pnr\*
19+
rmdir /s /q .\impl\pnr\
20+
21+
del /s /f /q .\impl\temp\*
22+
rmdir /s /q .\impl\temp\
23+
24+
del /s /f /q .*.gprj.user
25+
26+
pause
27+
goto :eof
28+

0 commit comments

Comments
 (0)