Use simplified name for deb makefile

This commit is contained in:
Aoran Zeng
2025-06-16 16:49:33 +08:00
parent 975b2391cb
commit 2124770aeb
4 changed files with 10 additions and 10 deletions

View File

@@ -33,7 +33,7 @@ cd chsrc
cd pkg/deb
# 执行构建命令
./deb.makefile deb-make
./Makefile deb-make
```
### 调试构建
@@ -95,7 +95,7 @@ zless /usr/share/doc/chsrc/changelog.Debian.gz
### 清理构建产物
```bash
./deb.makefile deb-clean
./Makefile deb-clean
```
<br>

View File

@@ -2,7 +2,7 @@
# --------------------------------------------------------------
# SPDX-License-Identifier: GPL-3.0-or-later
# --------------------------------------------------------------
# Build File : deb.makefile
# Build File : Makefile
# File Authors : sanchuanhehe <wyihe5520@gmail.com>
# Contributors : Aoran Zeng <ccmywish@qq.com>
# |

View File

@@ -20,14 +20,14 @@
## 相关文件
- `.github/workflows/pkg-deb.yml` - CI 配置文件
- `CI.md` - CI 情况说明
- `./CI.md` - CI 情况说明
<wbr>
- `debian/` - deb 包构建配置目录
- `BUILD.md` - 如何手动构建
- `deb.makefile` - deb 包构建 Makefile
- `deb-installation-test.sh` - deb 包 **已正确安装** 测试脚本
- `./debian/` - deb 包构建配置目录
- `./BUILD.md` - 如何手动构建
- `./Makefile` - deb 包构建 Makefile
- `./deb-installation-test.sh` - deb 包 **已正确安装** 测试脚本
<br>