nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit cba7284221176dbbb2275e479c3eb8a8afc665c6
parent c201c31646f2c3b8274627e0f1fe624c7c92be3e
Author: William Casarin <jb55@jb55.com>
Date:   Mon,  5 Feb 2024 16:46:03 -0800

make: pass src to tags cmd

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -47,7 +47,7 @@ distclean: clean rm -rf deps tags: - find . -name '*.c' -or -name '*.h' | xargs ctags + find src -name '*.c' -or -name '*.h' | xargs ctags configurator: src/configurator.c $(CC) $< -o $@