1
0
mirror of git://jb55.com/damus synced 2024-09-28 16:00:43 +00:00

make: add tags target

This commit is contained in:
William Casarin 2023-08-06 13:46:23 -07:00
parent 2529797dfb
commit e397fc069b

View File

@ -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