fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 758dd07fc8d980a9072e9da70be4b9850b95a440 parent 49f18e80e903578eeddda22584703fac560a8fb4 Author: Thodoris Sotiropoulos <theosotr@aueb.gr> Date: Sun, 5 Jan 2020 00:50:06 +0200 Add missing Make dependencies Diffstat:
| M | .gitignore | | | 1 | + |
| M | Makefile | | | 6 | ++++-- |
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1,5 +1,6 @@ fzy fzytest *.o +*.d config.h test/acceptance/vendor/bundle diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ VERSION=1.0 CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE -CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps -Werror=vla +CFLAGS+=-MD -Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps -Werror=vla PREFIX?=/usr/local MANDIR?=$(PREFIX)/share/man BINDIR?=$(PREFIX)/bin @@ -49,9 +49,11 @@ fmt: clang-format -i src/*.c src/*.h clean: - rm -f fzy test/fzytest src/*.o deps/*/*.o + rm -f fzy test/fzytest src/*.o src/*.d deps/*/*.o veryclean: clean rm -f config.h .PHONY: test check all clean veryclean install fmt acceptance + +-include $(OBJECTS:.o=.d)