mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-03 15:27:17 +08:00
automake
This commit is contained in:
parent
0b5320c785
commit
23daf7ea4e
@ -100,6 +100,7 @@
|
||||
- [XML::Parser](build-system/xml-parser)
|
||||
- [Intltool](build-system/intltool)
|
||||
- [Autoconf](build-system/autoconf)
|
||||
- [Automake](build-system/automake)
|
||||
|
||||
- [**Вспомогательные материалы**](additional/additional)
|
||||
- [Строение GNU/Linux. Часть 1](additional/LinuxStructure1)
|
||||
|
46
docs/build-system/automake.md
Normal file
46
docs/build-system/automake.md
Normal file
@ -0,0 +1,46 @@
|
||||
<package-info :package="package" showsbu2></package-info>
|
||||
|
||||
<script>
|
||||
new Vue({
|
||||
el: '#main',
|
||||
data: { package: {} },
|
||||
mounted: function () {
|
||||
this.getPackage('automake');
|
||||
},
|
||||
methods: {
|
||||
getPackage: function(name) {
|
||||
getPackage(name)
|
||||
.then(response => this.package = response);
|
||||
},
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
## Настройка
|
||||
|
||||
Внесите исправление для некорректного теста:
|
||||
```bash
|
||||
sed -i "s/''/etags/" t/tags-lisp-space.sh
|
||||
```
|
||||
|
||||
```bash
|
||||
./configure --prefix=/usr --docdir=/usr/share/doc/automake
|
||||
```
|
||||
|
||||
## Сборка
|
||||
|
||||
```bash
|
||||
make
|
||||
```
|
||||
|
||||
## Тестирование
|
||||
|
||||
```bash
|
||||
make check
|
||||
```
|
||||
|
||||
## Установка
|
||||
|
||||
```bash
|
||||
make install
|
||||
```
|
Loading…
Reference in New Issue
Block a user