From b7f29419e92783e3ca114755db2db5b142be2139 Mon Sep 17 00:00:00 2001 From: Matthias Krack Date: Tue, 13 Jun 2023 14:54:02 +0200 Subject: [PATCH] Obsolete make targets removed --- Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index ca2b678677..53e29240ed 100644 --- a/Makefile +++ b/Makefile @@ -74,8 +74,8 @@ endif pretty precommit precommitclean doxygenclean doxygen \ fpretty fprettyclean \ doxify doxifyclean \ - install clean realclean distclean mrproper help \ - test testbg testclean testrealclean \ + install clean realclean distclean help \ + test testbg testclean \ data \ $(EXTSPACKAGES) @@ -334,14 +334,10 @@ testclean: rm -rf $(foreach v, $(VERSION), $(MAINTSTDIR)/$(ARCH)/$(v)/TEST-*) OTHER_HELP += "testclean : Remove all TEST-* files for given ARCH and VERSION" -testrealclean: testclean - rm -rf $(foreach v, $(VERSION), $(MAINTSTDIR)/$(ARCH)/$(v)/LAST-*) -OTHER_HELP += "testrealclean : Remove all LAST-* and TEST-* files for given ARCH and VERSION" - # # Remove all files from previous builds # -distclean: precommitclean fprettyclean doxifyclean testrealclean +distclean: precommitclean fprettyclean doxifyclean rm -rf $(DOXYGENDIR) $(MAINEXEDIR) $(MAINOBJDIR) $(MAINLIBDIR) $(MAINTSTDIR) OTHER_HELP += "distclean : Remove all files from previous builds"