From 339011f59c25937567f1e88d663c22dade5e217a Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 8 Apr 2023 23:07:09 +0200 Subject: [PATCH] build: remove uninstall target The `make uninstall` target can't be expected to find all files it installs in many cases. It is therefore better to remove it rather than give the impression to users that it is a robust. --- Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Makefile b/Makefile index b0b0a800f0..0237224aba 100644 --- a/Makefile +++ b/Makefile @@ -134,14 +134,6 @@ TEST=functionaltest unittest generated-sources benchmark $(FORMAT) $(LINT) $(TEST): | build/.ran-cmake $(CMAKE_PRG) --build build --target $@ -uninstall: -ifneq (,$(wildcard build/install_manifest.txt)) - $(CMAKE_PRG) --build build --target $@ -else - @echo Install manifest file not found. You need to build and install \ - neovim to generate the manifest file. -endif - test: $(TEST) iwyu: build/.ran-cmake