chore: 更新 .gitignore 文件

- 添加 docs 文件夹到忽略列表,以忽略 Doxygen 生成的文件
- 保持原有的忽略规则不变
This commit is contained in:
ZZY
2025-04-05 23:11:39 +08:00
parent c800b48ca2
commit 8d97fe896c
32 changed files with 3939 additions and 187 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
build-docs:
doxygen Doxyfile
docs: build-docs
python -m http.server -d docs/html
smcc-build:
make -C src
smcc-clean:
make -C src clean
smcc-test: smcc-build
make -C tests/simple