From d4d7c0c5ae4ffb30e4efcf18aa55a14a8a968fed Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 24 Aug 2023 10:00:38 +0200 Subject: [PATCH] buildsys: add dsc target Signed-off-by: Wolfgang Bumiller --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b70bde0..1ab2dcd 100644 --- a/Makefile +++ b/Makefile @@ -31,9 +31,14 @@ deb: build (cd build/pathpatterns && CARGO=/usr/bin/cargo RUSTC=/usr/bin/rustc dpkg-buildpackage -b -uc -us) lintian build/*.deb +.PHONY: dsc +dsc: build + (cd build/pathpatterns && CARGO=/usr/bin/cargo RUSTC=/usr/bin/rustc dpkg-buildpackage -S -uc -us) + lintian build/*.dsc + .PHONY: clean clean: - rm -rf build *.deb *.buildinfo *.changes *.orig.tar.gz + rm -rf build *.deb *.dsc *.buildinfo *.changes *.orig.tar.gz cargo clean upload: deb -- 2.39.5