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