Compare commits

...

2 commits

Author SHA1 Message Date
78a4499309
Fix example 2025-02-13 13:30:22 +00:00
fd84c162af
Fix Makefile 2025-02-13 13:27:07 +00:00
2 changed files with 2 additions and 8 deletions

View file

@ -2,10 +2,8 @@
VERSION = 1.0
TARGET = neo
MANPAGE = $(TARGET).1
PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
MANDIR = $(PREFIX)/share/man/man1
CFLAGS += -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700
@ -14,21 +12,17 @@ $(TARGET): $(TARGET).c
dist:
mkdir -p $(TARGET)-$(VERSION)
cp -R README.md $(MANPAGE) $(TARGET) $(TARGET)-$(VERSION)
cp -R README.md $(TARGET) $(TARGET)-$(VERSION)
tar -czf $(TARGET)-$(VERSION).tar.gz $(TARGET)-$(VERSION)
rm -rf $(TARGET)-$(VERSION)
install: $(TARGET)
mkdir -p $(DESTDIR)$(BINDIR)
mkdir -p $(DESTDIR)$(MANDIR)
cp -p $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET)
chmod 755 $(DESTDIR)$(BINDIR)/$(TARGET)
cp -p $(MANPAGE) $(DESTDIR)$(MANDIR)/$(MANPAGE)
chmod 644 $(DESTDIR)$(MANDIR)/$(MANPAGE)
uninstall:
rm -f $(DESTDIR)$(BINDIR)/$(TARGET)
rm -f $(DESTDIR)$(MANDIR)/$(MANPAGE)
clean:
rm -f $(TARGET)

View file

@ -4,7 +4,7 @@ neo is a fuzzy finder inspired by fnf and supports basic colours.
# Usage
```
cat file | neo
echo "choice1\nchoice2\nchoice3" | neo
echo -e "choice1\nchoice2\nchoice3" | neo
```
# Dependencies