| 1 | # Fortran compiled files |
| 2 | *.o |
| 3 | *.mod |
| 4 | *.smod |
| 5 | *.a |
| 6 | *.so |
| 7 | *.dylib |
| 8 | |
| 9 | # Executables |
| 10 | sniffly |
| 11 | *.exe |
| 12 | *.out |
| 13 | |
| 14 | # Build directories |
| 15 | /build/ |
| 16 | /builddir/ |
| 17 | /_build/ |
| 18 | |
| 19 | # Meson |
| 20 | meson-logs/ |
| 21 | meson-private/ |
| 22 | compile_commands.json |
| 23 | |
| 24 | # IDE files |
| 25 | .vscode/ |
| 26 | .idea/ |
| 27 | *.swp |
| 28 | *.swo |
| 29 | *~ |
| 30 | .DS_Store |
| 31 | |
| 32 | # Testing |
| 33 | test_output/ |
| 34 | *.log |
| 35 | |
| 36 | # Documentation builds |
| 37 | /docs/_build/ |
| 38 | /docs/html/ |
| 39 | /docs/latex/ |
| 40 | |
| 41 | # Package files |
| 42 | *.deb |
| 43 | *.rpm |
| 44 | *.dmg |
| 45 | *.pkg |
| 46 | *.tar.gz |
| 47 | *.zip |
| 48 | |
| 49 | # Temporary files |
| 50 | *.tmp |
| 51 | *.bak |
| 52 | *.orig |
| 53 | |
| 54 | # macOS |
| 55 | .DS_Store |
| 56 | .AppleDouble |
| 57 | .LSOverride |
| 58 | Icon? |
| 59 | |
| 60 | # Linux |
| 61 | *~ |
| 62 | .directory |
| 63 | |
| 64 | # gtk-fortran build artifacts |
| 65 | gtk-fortran/ |
| 66 | |
| 67 | # Debug files |
| 68 | *.dSYM/ |
| 69 | vgcore.* |
| 70 | /core |
| 71 | /core.* |
| 72 | |
| 73 | # Coverage |
| 74 | *.gcda |
| 75 | *.gcno |
| 76 | *.gcov |
| 77 | breadcrumb/ |
| 78 | |
| 79 | # macOS app bundle |
| 80 | Sniffly.app/ |
| 81 |