This commit is contained in:
Anton Maisak 2021-05-22 16:54:54 +03:00
parent 01ab0e2cb2
commit e0e37f4e6c
2 changed files with 43 additions and 1 deletions

View File

@ -119,7 +119,9 @@
- [Gzip](build-system/gzip)
- [Iproute2](build-system/iproute)
- [Kbd](build-system/kbd.md)
- [Libpipeline](build-system/libpipeline.md)
- [Libpipeline](build-system/libpipeline.)
- [Make](build-system/make)
- [**Выбор системы инициализации**](build-system/init-system)
- **SysVinit**
- **SystemD**

40
docs/build-system/make.md Normal file
View File

@ -0,0 +1,40 @@
<package-info :package="package" showsbu2></package-info>
<script>
new Vue({
el: '#main',
data: { package: {} },
mounted: function () {
this.getPackage('make');
},
methods: {
getPackage: function(name) {
getPackage(name)
.then(response => this.package = response);
},
}
})
</script>
## Настройка
```bash
./configure --prefix=/usr
```
## Сборка
```bash
make
```
## Тестирование
```bash
make check
```
## Установка
```bash
make install
```