From 644da9ed40c7fbb276b60caf9468c812b30e3fa5 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 23 Jan 2020 02:26:58 -0500 Subject: [PATCH] Update makefile help command --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index b39f48d..9180187 100644 --- a/makefile +++ b/makefile @@ -32,9 +32,10 @@ clean: # Display help output. help: - @echo "Default: Runs \"valgrind\", then \"clean\"." + @echo "Default: Executes \"valgrind\", then \"clean\"." @echo "" @echo "Available Commands:" - @echo " all - Compile program to \"a.out\". Then run." + @echo " all - Executes \"run\", then \"clean\"." + @echo " run - Compile program to \"a.out\". Then run." @echo " valgrind - Compile program to \"a.out\". Then run with memory error checking." @echo " clean - Remove temporary/compiled files from directory." -- GitLab