summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ffb040a..43ba4da 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,8 @@ all: fzy
fzytest: fzytest.o match.o choices.o
$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^
-test: fzytest
+test: check
+check: fzytest
$(DEBUGGER) ./fzytest
fzy: fzy.o match.o tty.o choices.o
@@ -40,4 +41,4 @@ fmt:
clean:
$(RM) fzy fzytest *.o
-.PHONY: test all clean install fmt
+.PHONY: test check all clean install fmt