Правила сборки для ЗОСРВ "Нейтрино" редакции 2020
Этот коммит содержится в:
родитель
635caa9078
Коммит
34f941a442
1
.gitignore
поставляемый
1
.gitignore
поставляемый
@ -9,7 +9,6 @@
|
|||||||
Debug
|
Debug
|
||||||
Release
|
Release
|
||||||
*.exp
|
*.exp
|
||||||
Makefile
|
|
||||||
Makefile.in
|
Makefile.in
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
|
2
Makefile
Обычный файл
2
Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=OS
|
||||||
|
include recurse.mk
|
22
README.md
22
README.md
@ -1,16 +1,14 @@
|
|||||||
# libssh2 - SSH2 library
|
Сборка проекта в ЗОСРВ "Нейтрино" редакции 2020
|
||||||
|
===============================================
|
||||||
|
|
||||||
libssh2 is a library implementing the SSH2 protocol, available under
|
Для всех архитектур:
|
||||||
the revised BSD license.
|
|
||||||
|
|
||||||
[Web site](https://www.libssh2.org/)
|
```
|
||||||
|
make -j16 install
|
||||||
|
```
|
||||||
|
|
||||||
[Mailing list](https://cool.haxx.se/mailman/listinfo/libssh2-devel)
|
Только для x86:
|
||||||
|
|
||||||
[BSD Licensed](https://libssh2.org/license.html)
|
```
|
||||||
|
CPULIST=x86 make -j16 install
|
||||||
[Web site source code](https://github.com/libssh2/www)
|
```
|
||||||
|
|
||||||
Installation instructions:
|
|
||||||
- [for CMake](docs/INSTALL_CMAKE.md)
|
|
||||||
- [for autotools](docs/INSTALL_AUTOTOOLS)
|
|
||||||
|
9
common.mk
Обычный файл
9
common.mk
Обычный файл
@ -0,0 +1,9 @@
|
|||||||
|
ifndef QCONFIG
|
||||||
|
QCONFIG=qconfig.mk
|
||||||
|
endif
|
||||||
|
include $(QCONFIG)
|
||||||
|
|
||||||
|
AUTORECONFOPTS=-fi
|
||||||
|
|
||||||
|
include $(MKFILES_ROOT)/autotools.mk
|
||||||
|
include $(MKFILES_ROOT)/qtargets.mk
|
2
nto/Makefile
Обычный файл
2
nto/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=CPU
|
||||||
|
include recurse.mk
|
2
nto/aarch64/Makefile
Обычный файл
2
nto/aarch64/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=VARIANT
|
||||||
|
include recurse.mk
|
1
nto/aarch64/o.le/Makefile
Обычный файл
1
nto/aarch64/o.le/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
2
nto/arm/Makefile
Обычный файл
2
nto/arm/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=VARIANT
|
||||||
|
include recurse.mk
|
1
nto/arm/o.le.v7/Makefile
Обычный файл
1
nto/arm/o.le.v7/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
1
nto/arm/o.le/Makefile
Обычный файл
1
nto/arm/o.le/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
2
nto/e2k/Makefile
Обычный файл
2
nto/e2k/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=VARIANT
|
||||||
|
include recurse.mk
|
1
nto/e2k/o.le/Makefile
Обычный файл
1
nto/e2k/o.le/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
2
nto/mips/Makefile
Обычный файл
2
nto/mips/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=VARIANT
|
||||||
|
include recurse.mk
|
1
nto/mips/o.be/Makefile
Обычный файл
1
nto/mips/o.be/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
1
nto/mips/o.le.mc/Makefile
Обычный файл
1
nto/mips/o.le.mc/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
1
nto/mips/o.le/Makefile
Обычный файл
1
nto/mips/o.le/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
2
nto/ppc/Makefile
Обычный файл
2
nto/ppc/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=VARIANT
|
||||||
|
include recurse.mk
|
1
nto/ppc/o.be.spe/Makefile
Обычный файл
1
nto/ppc/o.be.spe/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
1
nto/ppc/o.be/Makefile
Обычный файл
1
nto/ppc/o.be/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
2
nto/x86/Makefile
Обычный файл
2
nto/x86/Makefile
Обычный файл
@ -0,0 +1,2 @@
|
|||||||
|
LIST=VARIANT
|
||||||
|
include recurse.mk
|
1
nto/x86/o/Makefile
Обычный файл
1
nto/x86/o/Makefile
Обычный файл
@ -0,0 +1 @@
|
|||||||
|
include ../../../common.mk
|
Загрузка…
x
Ссылка в новой задаче
Block a user