From 6b980d730f3e9b8584f37269357a0e1c7336a102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=91=D0=B0?= =?UTF-8?q?=D0=B4=D1=8F=D0=B5=D0=B2?= Date: Fri, 11 Oct 2024 16:04:32 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D1=86=D0=B5=D0=BB=D1=8C=20deploy=20=D0=B2?= =?UTF-8?q?=20makefile.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/makefile b/makefile index 79095ec..0d7a47f 100644 --- a/makefile +++ b/makefile @@ -158,6 +158,14 @@ pkg-deb: build ## Build debian package .PHONY:pkg-deb endif +ifneq ($(OS),Windows_NT) +## Deploy + +deploy: ## deploy debian packages + find -O1 $(OUT_DIR) -name '*.changes' -exec dput mousesoft \{\} \; +.PHONY:deploy +endif + ## Test test: ## Run the tests of the project @@ -210,12 +218,6 @@ doc-golds: doc-common ## Generate HTML documentation with Golds. -silent -only-list-exporteds -wdpkgs-listing=solo ./... .PHONY:doc-golds -## Deploy - -deploy: ## deploy debian packages - find -O1 $(OUT_DIR) -name '*.changes' -exec dput mousesoft \{\} \; -.PHONY:deploy-deb - ## Help help: ## Show this help.