From e397fc069bce94054bcf5f165151d65891ac5d27 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 6 Aug 2023 13:46:23 -0700 Subject: [PATCH] make: add tags target --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 420199e6..a0346964 100644 --- 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