mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-01-24 15:12:18 +08:00
make
This commit is contained in:
parent
01ab0e2cb2
commit
e0e37f4e6c
@ -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
40
docs/build-system/make.md
Normal 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
|
||||
```
|
Loading…
Reference in New Issue
Block a user