diff options
author | Yuma Ueda <cyan@0x00a1e9.dev> | 2023-07-14 22:51:15 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 15:51:15 +0200 |
commit | fd9ac5aa8e1c769d8cb22275206145b8d2603687 (patch) | |
tree | ed4393be515bb1fa58c56846e8de30d281e39c52 | |
parent | 2ecba65b4ba741618ecbfd2a50a939987078bc98 (diff) | |
download | rneovim-fd9ac5aa8e1c769d8cb22275206145b8d2603687.tar.gz rneovim-fd9ac5aa8e1c769d8cb22275206145b8d2603687.tar.bz2 rneovim-fd9ac5aa8e1c769d8cb22275206145b8d2603687.zip |
build(makefile): remove a phony target uninstall (#24349)
`uninstall` target was removed from makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |