68b8fe5851
docs/extra — ~570 МБ архивов чужих исходников (525 МБ из них — четыре почти одинаковых zip'а bad_apple); docs/sources — клоны чужих репозиториев со своими .git внутри, которые при обычном add стали бы битыми gitlink-ссылками (без .gitmodules клон их не подтянет). Материалы остаются на диске, но в историю не попадают: раздувание репо необратимо без перезаписи истории. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
123 lines
3.4 KiB
Plaintext
123 lines
3.4 KiB
Plaintext
# ===========================================================================
|
|
# Build outputs
|
|
# ===========================================================================
|
|
|
|
# `build/` directories anywhere in the tree
|
|
# (top-level build/, libc/build/, libbgi/build/, toolchain/*/build/, ...)
|
|
build/
|
|
|
|
# sprinter-cc per-example intermediate directory
|
|
.sprinter-cc-*/
|
|
|
|
# Per-program final/intermediate outputs landing alongside the source
|
|
# (real apps under examples/ and libc feature tests under tests/).
|
|
examples/*/*.exe
|
|
examples/*/*.asm
|
|
examples/*/*.lst
|
|
examples/*/*.lk
|
|
examples/*/*.ihx
|
|
examples/*/*.noi
|
|
examples/*/*.sym
|
|
examples/*/*.map
|
|
examples/*/*.rel
|
|
examples/*/*.cdb
|
|
examples/*/*.mem
|
|
examples/*/*.rst
|
|
|
|
# Temporary build directory for floppy disk image preparation
|
|
examples/*/.disk_tmp/
|
|
|
|
tests/*/*.exe
|
|
tests/*/*.asm
|
|
tests/*/*.lst
|
|
tests/*/*.lk
|
|
tests/*/*.ihx
|
|
tests/*/*.noi
|
|
tests/*/*.sym
|
|
tests/*/*.map
|
|
tests/*/*.rel
|
|
tests/*/*.cdb
|
|
tests/*/*.mem
|
|
tests/*/*.rst
|
|
|
|
# applications/<app>/<prog>/ — реальные приложения (та же схема, что
|
|
# examples/ и tests/, но на уровень глубже: applications/PoP/roomtest/...)
|
|
applications/*/*/*.exe
|
|
applications/*/*/*.asm
|
|
applications/*/*/*.lst
|
|
applications/*/*/*.lk
|
|
applications/*/*/*.ihx
|
|
applications/*/*/*.noi
|
|
applications/*/*/*.sym
|
|
applications/*/*/*.map
|
|
applications/*/*/*.rel
|
|
applications/*/*/*.cdb
|
|
applications/*/*/*.mem
|
|
applications/*/*/*.rst
|
|
|
|
# PoP-порт: внешние референс-репозитории (собственные git-клоны — НЕ
|
|
# часть этого репозитория) + оригинальные game-данные (копирайт, только
|
|
# для реверса форматов на этой машине).
|
|
applications/PoP/SDLPoP/
|
|
applications/PoP/mininim/
|
|
applications/PoP/PR/
|
|
applications/PoP/Prince-of-Persia-Apple-II/
|
|
applications/PoP/MSDOS/
|
|
|
|
# libc + libbgi archives (built by libc/Makefile + libbgi/Makefile)
|
|
lib/*.lib
|
|
|
|
# Host-built mkexe binary + test outputs (input fixtures *.bin/*.ihx kept)
|
|
toolchain/mkexe/mkexe
|
|
toolchain/mkexe/tests/*.exe
|
|
toolchain/mkexe/tests/*.actual
|
|
|
|
# Host-C build artifacts (mkexe and similar tools compiled with native cc)
|
|
*.o
|
|
*.obj
|
|
*.dSYM/
|
|
|
|
# ===========================================================================
|
|
# Vendored / downloaded
|
|
# ===========================================================================
|
|
|
|
# SDCC: extracted source tree + download tarballs
|
|
# (only third_party/setup-sdcc.sh tracked)
|
|
third_party/sdcc/
|
|
third_party/sdcc-*/
|
|
third_party/*.tar.bz2
|
|
third_party/*.tar.gz
|
|
|
|
# MAME emulator install — ~1 GB binary + ROMs + CHDs
|
|
mame/
|
|
|
|
# ===========================================================================
|
|
# OS / editor / AI assistant
|
|
# ===========================================================================
|
|
|
|
# macOS
|
|
.DS_Store
|
|
._*
|
|
|
|
# Editor swap / backup
|
|
*~
|
|
*.swp
|
|
*.bak
|
|
*.orig
|
|
*.rej
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
.kilo/
|
|
|
|
# Claude Code local settings (per-machine, not for the repo)
|
|
.claude/
|
|
|
|
# Тяжёлые справочные материалы, НЕ версионируются: docs/extra — архивы
|
|
# исходников (~570 МБ, четыре почти одинаковых bad_apple), docs/sources —
|
|
# клоны чужих репозиториев (Sprinter-BIOS, Estex-DSS, SaymanNsk) со своими
|
|
# .git внутри (в коммите стали бы битыми gitlink-ссылками).
|
|
docs/extra/
|
|
docs/sources/
|