From 0f957d89c90062fdf8ad8ce4c3796b54b51d20e9 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 3 Nov 2019 05:00:29 +0100 Subject: Fixed false positive on blank output, added last char test of pft --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') 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) -- cgit