diff --git a/makefile b/makefile
index b39f48dbde3520718b211aa34d1278cb34efb8f2..9180187073988fb0207d20c01e09f134aa056c40 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."