From 82ad3144ff3091de7f29b32a9e37395444ec9d03 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 18 Jun 2018 08:34:59 +0200 Subject: [PATCH] buildsys: refactor distclean and clean target remove the cleanup of the not produced ${PACKAGE}-*.tar.gz file. This is here since the import from SVN, but is not needed since quite a time. Signed-off-by: Thomas Lamprecht --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 599e99f..6af8e77 100644 --- a/Makefile +++ b/Makefile @@ -27,12 +27,10 @@ deb ${DEB}: cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc lintian ${DEB} -.PHONY: clean -clean: - rm -rf *~ *.deb *.changes ${BUILDDIR} ${PACKAGE}-*.tar.gz *.buildinfo - -.PHONY: distclean +.PHONY: clean distclean distclean: clean +clean: + rm -rf *~ *.deb *.changes ${BUILDDIR} *.buildinfo .PHONY: check check: -- 2.39.2