From 18883c1ce7a62b4a3cd5e3afe96afa07c7f49d34 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Fri, 15 Jul 2022 10:27:09 +0300 Subject: [PATCH] Makefile: fix targets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b604f6a..e9bffbe 100644 --- a/Makefile +++ b/Makefile @@ -56,8 +56,8 @@ help: ## Display this help. # -------------------------------------------------------------------------------------------------- man: $(MAN_PAGES) ## Generate man pages. -links: man make_local_dirs make_links link_man_pages ## Install kubectl scripts by creating links. -install: man copy_bin copy_man_pages ## Install kubectl scripts to /usr/local/bin. +links: make_local_dirs make_links link_man_pages ## Install kubectl scripts by creating links. +install: copy_bin copy_man_pages ## Install kubectl scripts to /usr/local/bin. uninstall: rm_bin rm_links rm_man_pages rm_man_links rm_local_dirs ## Uninstall kubectl scripts. # --------------------------------------------------------------------------------------------------