From 3ea93914b0745e0d9bb47b9a5becef4149e595bb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Correnson?= <loic.correnson@cea.fr>
Date: Thu, 20 Oct 2022 11:31:38 +0000
Subject: [PATCH] [ivette] fix uninstall targets

---
 ivette/Makefile              | 6 +++---
 ivette/Makefile.installation | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ivette/Makefile b/ivette/Makefile
index 63eabe7cdae..510191e3542 100644
--- a/ivette/Makefile
+++ b/ivette/Makefile
@@ -255,10 +255,10 @@ ifdef PREFIX
 
 uninstall:
 	@echo "Uninstall Ivette"
+	@rm -f  $(BINDIR)/ivette
+	@rm -f  $(LIBDIR)/frama-c/ivette.tgz
 	@rm -fr $(LIBDIR)/frama-c/Ivette.app
-	@rm -f $(LIBDIR)/frama-c/ivette.tgz
-	@rm -f $(LIBDIR)/frama-c/ivette
-	@rm -f $(BINDIR)/ivette
+	@rm -fr $(LIBDIR)/frama-c/ivette
 
 endif
 
diff --git a/ivette/Makefile.installation b/ivette/Makefile.installation
index 4b6753ec811..9f302b06dd1 100644
--- a/ivette/Makefile.installation
+++ b/ivette/Makefile.installation
@@ -47,9 +47,9 @@ install::
 
 uninstall::
 	@echo "Removing Ivette"
-	@rm -f ${PREFIX}/bin/ivette
-	@rm -f ${PREFIX}/lib/frama-c/ivette.tgz
+	@rm -f  ${PREFIX}/bin/ivette
+	@rm -f  ${PREFIX}/lib/frama-c/ivette.tgz
 	@rm -fr ${PREFIX}/lib/frama-c/Ivette.app
 	@rm -fr ${PREFIX}/lib/frama-c/ivette
-
+	
 endif
-- 
GitLab