新增基于 Python 的构建脚本 `cbuild.py`,支持包管理、依赖解析和模块化编译。 同时添加 `.gitignore` 忽略 `build` 目录,并在 `justfile` 中更新构建命令。 移除了原有的 `lib/Makefile` 和主目录下的相关 make 规则,统一使用新构建系统。
32 lines
244 B
Plaintext
32 lines
244 B
Plaintext
.*
|
|
!.gitignore
|
|
|
|
# doxygen generated files
|
|
docs
|
|
|
|
# smcc compiler generated files
|
|
*.bin
|
|
.s
|
|
.asm
|
|
|
|
# linux binary files
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.out
|
|
|
|
# windows binary files
|
|
*.obj
|
|
*.lib
|
|
*.dll
|
|
*.exe
|
|
|
|
# developed notes
|
|
note.md
|
|
|
|
# python
|
|
.venv
|
|
|
|
# cbuilder
|
|
build
|