commit e397fc069bce94054bcf5f165151d65891ac5d27
parent 2529797dfb6465ba47b46717e686946bd6f7b9dd
Author: William Casarin <jb55@jb55.com>
Date: Sun, 6 Aug 2023 13:46:23 -0700
make: add tags target
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -4,5 +4,10 @@ all: nostrscript/primal.wasm
nostrscript/%.wasm: nostrscript/%.ts nostrscript/nostr.ts Makefile
asc $< --runtime stub --outFile $@ --optimize
+tags:
+ find damus-c -name '*.c' -or -name '*.h' | xargs ctags
+
clean:
rm nostrscript/*.wasm
+
+.PHONY: tags