1
0
mirror of git://jb55.com/damus synced 2024-09-05 21:03:51 +00:00
damus/Makefile
2023-08-06 13:50:20 -07:00

14 lines
254 B
Makefile

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