From fd9ac5aa8e1c769d8cb22275206145b8d2603687 Mon Sep 17 00:00:00 2001 From: Yuma Ueda Date: Fri, 14 Jul 2023 22:51:15 +0900 Subject: [PATCH] build(makefile): remove a phony target uninstall (#24349) `uninstall` target was removed from makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86416c92a7..252509348b 100644 --- a/Makefile +++ b/Makefile @@ -173,4 +173,4 @@ $(DEPS_BUILD_DIR)/%: phony_force $(BUILD_TOOL) -C $(DEPS_BUILD_DIR) $(patsubst $(DEPS_BUILD_DIR)/%,%,$@) endif -.PHONY: test clean distclean nvim libnvim cmake deps install appimage checkprefix benchmark uninstall $(FORMAT) $(LINT) $(TEST) +.PHONY: test clean distclean nvim libnvim cmake deps install appimage checkprefix benchmark $(FORMAT) $(LINT) $(TEST)