From f51c4aa5fc5ea79893d11bee45c5231e17e05fa0 Mon Sep 17 00:00:00 2001 From: Jesse Laprade Date: Tue, 7 Jul 2020 14:26:49 -0400 Subject: [PATCH] updated makefile --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 9dace37..e986e88 100644 --- a/Makefile +++ b/Makefile @@ -16,17 +16,17 @@ file-executable-current= $(directory-current)/$(file-executable) .PHONY: help help: @echo "Usage" - @echo " make [command]" + @echo " make command []" @echo "" @echo "Commands:" - @echo " help - Displays this help message" - @echo " clean - Removes the $(file-executable) executable from $(directory-source)/" - @echo " build - Creates a $(file-executable) executable in your current directory" - @echo " install-global - Installs a $(file-executable) executable in $(directory-global)/" - @echo " uninstall-global - Deletes a $(file-executable) executable from $(directory-global)/" - @echo " install-local - Installs a $(file-executable) executable in $(directory-local)/" - @echo " uninstall-local - Deletes a $(file-executable) executable from $(directory-local)/" - @echo " install-custom - Installs a $(file-executable) executable in a custom location" + @echo " help - Displays this help message" + @echo " clean - Removes the $(file-executable) executable from $(directory-source)/" + @echo " build - Creates a $(file-executable) executable in your current directory" + @echo " install-global - Installs a $(file-executable) executable in $(directory-global)/" + @echo " uninstall-global - Deletes a $(file-executable) executable from $(directory-global)/" + @echo " install-local - Installs a $(file-executable) executable in $(directory-local)/" + @echo " uninstall-local - Deletes a $(file-executable) executable from $(directory-local)/" + @echo " install-custom [] - Installs a $(file-executable) executable in a custom location" @echo "" @echo "Examples:" @echo " make help"