diff options
author | tgingold <tgingold@users.noreply.github.com> | 2020-12-29 17:19:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 17:19:09 +0100 |
commit | 7ca54117b8f757396ba5ef04c83ff1228ca94384 (patch) | |
tree | cc5f7f4166cc0570bda5cf2047d3ef7abbc36e37 /.gitignore | |
parent | 340fc792bba2ffdb4f930bc427a39ea3a1b659b2 (diff) | |
parent | 50adcf884c3cfa4e33ca45769295f163baa63a3e (diff) | |
download | ghdl-7ca54117b8f757396ba5ef04c83ff1228ca94384.tar.gz ghdl-7ca54117b8f757396ba5ef04c83ff1228ca94384.tar.bz2 ghdl-7ca54117b8f757396ba5ef04c83ff1228ca94384.zip |
Merge pull request #1556 from Paebbels/paebbels/pyGHDL
Cleanup and Restructuring of pyGHDL
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/.gitignore b/.gitignore index 897fd0904..2a290d646 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,8 @@ +# Ada outputs *~ *.ali *.o b~*.ad? -*.v87 -*.v93 -*.v08 -*.cf -.gdb_history -*.pyc - -testsuite/get_entities # Generated files on windows. /build/ @@ -19,7 +12,6 @@ testsuite/get_entities # Generated files on Linux config.status default_paths.ads -doc/_build/ elf_arch.ads ghdl1-* ghdl.gpr @@ -44,3 +36,35 @@ run-bind.ads src/version.ads version.ads version.tmp + +# GDB outputs +.gdb_history + +# GHDL outputs +*.v87 +*.v93 +*.v08 +*.cf + +# GHDLs testsuite +testsuite/get_entities + +# Python cache and object files +__pycache__/ +*.py[cod] + +# Python installation packages +dist/ + +# Coverage.py +.coverage +.cov +coverage.xml + +# Sphinx +doc/_build/ +doc/pyGHDL/**/*.* +!doc/pyGHDL/index.rst + +# IntelliJ project files +/.idea/workspace.xml |