aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 48cf7ce..55f9e91 100644
--- a/Makefile
+++ b/Makefile
@@ -15,16 +15,16 @@ OBJ = $(SRC:.c=.o)
run: all
./$(NAME) | $(PYTHON) prettier.py
-run_verbose:
+verbose: all
./$(NAME) | $(PYTHON) prettier.py --verbose
-run_quiet:
+quiet: all
./$(NAME) | $(PYTHON) prettier.py --quiet
-run_no_clear:
+no_clear: all
./$(NAME) | $(PYTHON) prettier.py --no-clear
-run_raw: all
+raw: all
./$(NAME)
all: $(NAME)