Lx4U-book/docs/build-system/check.md

41 lines
547 B
Markdown
Raw Normal View History

2021-05-19 16:12:30 +08:00
<package-info :package="package" showsbu2></package-info>
<script>
new Vue({
el: '#main',
data: { package: {} },
mounted: function () {
this.getPackage('check');
},
methods: {
getPackage: function(name) {
getPackage(name)
.then(response => this.package = response);
},
}
})
</script>
## Настройка
```bash
2021-05-19 18:07:50 +08:00
./configure --prefix=/usr
2021-05-19 16:12:30 +08:00
```
## Сборка
```bash
make
```
## Тестирование
```bash
make check
```
## Установка
```bash
make docdir=/usr/share/doc/check install
```