fzy

terminal fuzzy finder picker

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

commit cc03cd2936f7650d032ebb57624b795215eca684
parent 99e3c936e383dda5686ccf42f88a77dec9a44653
Author: John Hawthorn <john.hawthorn@gmail.com>
Date:   Sat, 27 Sep 2014 16:43:57 -0700

More portable make install

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

diff --git a/Makefile b/Makefile @@ -26,9 +26,10 @@ fzy: fzy.o match.o tty.o choices.o $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< install: fzy - $(INSTALL_PROGRAM) fzy $(DESTDIR)$(BINDIR)/fzy - $(INSTALL_PROGRAM) -d $(DESTDIR)$(MANDIR)/man1 - $(INSTALL_PROGRAM) fzy.1 $(DESTDIR)$(MANDIR)/man1/fzy.1 + mkdir -p $(DESTDIR)$(BINDIR) + cp fzy $(DESTDIR)$(BINDIR)/ + mkdir -p $(DESTDIR)$(MANDIR)/man1 + cp fzy.1 $(DESTDIR)$(MANDIR)/man1/ clean: $(RM) fzy fzytest *.o