summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-04-25 21:43:08 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-04-25 22:10:52 -0700
commita917ebdd8912e32b170f31177e1213da95fc6d35 (patch)
treeb0efbd0f2813f94eb64c4a17018e9e4c8e9471f1 /Makefile
parent4b45c990d3d6126749a0105ab3d76403744e905c (diff)
Add make check
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