fzy

terminal fuzzy finder picker

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

commit 019fdc8c1be2ff79681a131cad9b8b8120f0e21e
parent 37eb13008374419a190f7fd812be27f37d697bd9
Author: John Hawthorn <john.hawthorn@gmail.com>
Date:   Thu, 18 Sep 2014 20:06:17 -0700

BSD-compatible make install

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

diff --git a/Makefile b/Makefile @@ -21,12 +21,13 @@ test: fzytest fzy: fzy.o match.o tty.o choices.o $(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^ -%.o: %.c +%.o: %.c config.h $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< install: fzy $(INSTALL_PROGRAM) fzy $(DESTDIR)$(BINDIR)/fzy - $(INSTALL_PROGRAM) -D fzy.1 $(DESTDIR)$(MANDIR)/man1/fzy.1 + $(INSTALL_PROGRAM) -d $(DESTDIR)$(MANDIR)/man1 + $(INSTALL_PROGRAM) fzy.1 $(DESTDIR)$(MANDIR)/man1/fzy.1 clean: $(RM) fzy fzytest *.o