fzy

terminal fuzzy finder picker

git clone https://9o.is/git/fzy.git

commit 2af360495a93a552b1497b48bade2ce5e655023e
parent 184dc95d8f4660ef688cb8b66fdeac96900be436
Author: John Hawthorn <john.hawthorn@gmail.com>
Date:   Sat,  6 Sep 2014 17:59:12 -0700

Compile with -O3

Diffstat:
MMakefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ VERSION=0.1beta CPPFLAGS=-DVERSION=\"${VERSION}\" -CFLAGS+=-Wall -Wextra -g -std=c99 -O2 +CFLAGS+=-Wall -Wextra -g -std=c99 -O3 PREFIX?=/usr/local INSTALL=install @@ -11,13 +11,13 @@ INSTALL_DATA=${INSTALL} -m 644 all: fzy fzytest fzytest: fzytest.o match.o - $(CC) $(CCFLAGS) -o $@ $^ + $(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^ test: fzytest -./fzytest fzy: fzy.o match.o tty.o - $(CC) $(CCFLAGS) -o $@ $^ + $(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^ %.o: %.c fzy.h $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<