Browse code

Add make check

John Hawthorn authored on 26/04/2016 04:43:08
Showing 1 changed files

  • Makefile index ffb040a..43ba4da 100644
... ...
@@ -16,7 +16,8 @@ all: fzy
16 16
 fzytest: fzytest.o match.o choices.o
17 17
 	$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^
18 18
 
19
-test: fzytest
19
+test: check
20
+check: fzytest
20 21
 	$(DEBUGGER) ./fzytest
21 22
 
22 23
 fzy: fzy.o match.o tty.o choices.o
... ...
@@ -40,4 +41,4 @@ fmt:
40 41
 clean:
41 42
 	$(RM) fzy fzytest *.o
42 43
 
43
-.PHONY: test all clean install fmt
44
+.PHONY: test check all clean install fmt