From 841e15bd9c4b762363efbc872b25ef56c1ce2c84 Mon Sep 17 00:00:00 2001 From: cbdbc Date: Sat, 11 Feb 2023 14:35:14 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=D0=B0=20?= =?UTF-8?q?=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=97=D0=9E=D0=A1=D0=A0=D0=92=20"=D0=9D=D0=B5=D0=B9=D1=82?= =?UTF-8?q?=D1=80=D0=B8=D0=BD=D0=BE"=20=D1=80=D0=B5=D0=B4=D0=B0=D0=BA?= =?UTF-8?q?=D1=86=D0=B8=D0=B8=202020?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 1 + README.md | 16 ++++++++++++++++ smartmontools/Makefile | 2 ++ smartmontools/common.mk | 14 ++++++++++++++ smartmontools/nto/Makefile | 2 ++ smartmontools/nto/aarch64/Makefile | 2 ++ smartmontools/nto/aarch64/o.le/Makefile | 1 + smartmontools/nto/arm/Makefile | 2 ++ smartmontools/nto/arm/o.le.v7/Makefile | 1 + smartmontools/nto/arm/o.le/Makefile | 1 + smartmontools/nto/e2k/Makefile | 2 ++ smartmontools/nto/e2k/o.le/Makefile | 1 + smartmontools/nto/mips/Makefile | 2 ++ smartmontools/nto/mips/o.be/Makefile | 1 + smartmontools/nto/mips/o.le.mc/Makefile | 1 + smartmontools/nto/mips/o.le/Makefile | 1 + smartmontools/nto/ppc/Makefile | 2 ++ smartmontools/nto/ppc/o.be.spe/Makefile | 1 + smartmontools/nto/ppc/o.be/Makefile | 1 + smartmontools/nto/x86/Makefile | 2 ++ smartmontools/nto/x86/o/Makefile | 1 + www/Makefile.dnm | 0 22 files changed, 57 insertions(+) create mode 100644 Makefile create mode 100644 README.md create mode 100644 smartmontools/Makefile create mode 100644 smartmontools/common.mk create mode 100644 smartmontools/nto/Makefile create mode 100644 smartmontools/nto/aarch64/Makefile create mode 100644 smartmontools/nto/aarch64/o.le/Makefile create mode 100644 smartmontools/nto/arm/Makefile create mode 100644 smartmontools/nto/arm/o.le.v7/Makefile create mode 100644 smartmontools/nto/arm/o.le/Makefile create mode 100644 smartmontools/nto/e2k/Makefile create mode 100644 smartmontools/nto/e2k/o.le/Makefile create mode 100644 smartmontools/nto/mips/Makefile create mode 100644 smartmontools/nto/mips/o.be/Makefile create mode 100644 smartmontools/nto/mips/o.le.mc/Makefile create mode 100644 smartmontools/nto/mips/o.le/Makefile create mode 100644 smartmontools/nto/ppc/Makefile create mode 100644 smartmontools/nto/ppc/o.be.spe/Makefile create mode 100644 smartmontools/nto/ppc/o.be/Makefile create mode 100644 smartmontools/nto/x86/Makefile create mode 100644 smartmontools/nto/x86/o/Makefile create mode 100644 www/Makefile.dnm diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..0405fe9f --- /dev/null +++ b/Makefile @@ -0,0 +1 @@ +include recurse.mk diff --git a/README.md b/README.md new file mode 100644 index 00000000..ca3ca6b9 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +Сборка проекта в ЗОСРВ "Нейтрино" редакции 2020 +=============================================== + +Для всех архитектур +------------------- + +``` +make -j16 install +``` + +Только для x86 +-------------- + +``` +CPULIST=x86 make -j16 install +``` diff --git a/smartmontools/Makefile b/smartmontools/Makefile new file mode 100644 index 00000000..3beecfb7 --- /dev/null +++ b/smartmontools/Makefile @@ -0,0 +1,2 @@ +LIST=OS +include recurse.mk diff --git a/smartmontools/common.mk b/smartmontools/common.mk new file mode 100644 index 00000000..dd22b6b9 --- /dev/null +++ b/smartmontools/common.mk @@ -0,0 +1,14 @@ +ifndef QCONFIG +QCONFIG=qconfig.mk +endif +include $(QCONFIG) + +CONFIGUREFLAGS += -C +CONFIGUREFLAGS += -prefix=/usr + +CCFLAGS += -DSA_RESTART=0 +USEFILE=%1>%C --help +USETARGET=$(DESTDIR)/usr/bin/smartctl + +include $(MKFILES_ROOT)/autotools.mk +include $(MKFILES_ROOT)/qtargets.mk diff --git a/smartmontools/nto/Makefile b/smartmontools/nto/Makefile new file mode 100644 index 00000000..074b0d52 --- /dev/null +++ b/smartmontools/nto/Makefile @@ -0,0 +1,2 @@ +LIST=CPU +include recurse.mk diff --git a/smartmontools/nto/aarch64/Makefile b/smartmontools/nto/aarch64/Makefile new file mode 100644 index 00000000..c95a6664 --- /dev/null +++ b/smartmontools/nto/aarch64/Makefile @@ -0,0 +1,2 @@ +LIST=VARIANT +include recurse.mk diff --git a/smartmontools/nto/aarch64/o.le/Makefile b/smartmontools/nto/aarch64/o.le/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/aarch64/o.le/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/arm/Makefile b/smartmontools/nto/arm/Makefile new file mode 100644 index 00000000..c95a6664 --- /dev/null +++ b/smartmontools/nto/arm/Makefile @@ -0,0 +1,2 @@ +LIST=VARIANT +include recurse.mk diff --git a/smartmontools/nto/arm/o.le.v7/Makefile b/smartmontools/nto/arm/o.le.v7/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/arm/o.le.v7/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/arm/o.le/Makefile b/smartmontools/nto/arm/o.le/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/arm/o.le/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/e2k/Makefile b/smartmontools/nto/e2k/Makefile new file mode 100644 index 00000000..c95a6664 --- /dev/null +++ b/smartmontools/nto/e2k/Makefile @@ -0,0 +1,2 @@ +LIST=VARIANT +include recurse.mk diff --git a/smartmontools/nto/e2k/o.le/Makefile b/smartmontools/nto/e2k/o.le/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/e2k/o.le/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/mips/Makefile b/smartmontools/nto/mips/Makefile new file mode 100644 index 00000000..c95a6664 --- /dev/null +++ b/smartmontools/nto/mips/Makefile @@ -0,0 +1,2 @@ +LIST=VARIANT +include recurse.mk diff --git a/smartmontools/nto/mips/o.be/Makefile b/smartmontools/nto/mips/o.be/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/mips/o.be/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/mips/o.le.mc/Makefile b/smartmontools/nto/mips/o.le.mc/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/mips/o.le.mc/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/mips/o.le/Makefile b/smartmontools/nto/mips/o.le/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/mips/o.le/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/ppc/Makefile b/smartmontools/nto/ppc/Makefile new file mode 100644 index 00000000..c95a6664 --- /dev/null +++ b/smartmontools/nto/ppc/Makefile @@ -0,0 +1,2 @@ +LIST=VARIANT +include recurse.mk diff --git a/smartmontools/nto/ppc/o.be.spe/Makefile b/smartmontools/nto/ppc/o.be.spe/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/ppc/o.be.spe/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/ppc/o.be/Makefile b/smartmontools/nto/ppc/o.be/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/ppc/o.be/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/smartmontools/nto/x86/Makefile b/smartmontools/nto/x86/Makefile new file mode 100644 index 00000000..c95a6664 --- /dev/null +++ b/smartmontools/nto/x86/Makefile @@ -0,0 +1,2 @@ +LIST=VARIANT +include recurse.mk diff --git a/smartmontools/nto/x86/o/Makefile b/smartmontools/nto/x86/o/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/smartmontools/nto/x86/o/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/www/Makefile.dnm b/www/Makefile.dnm new file mode 100644 index 00000000..e69de29b