1
0
mirror of git://jb55.com/damus synced 2024-09-16 10:13:45 +00:00
damus/Makefile

14 lines
254 B
Makefile
Raw Normal View History

all: nostrscript/primal.wasm
nostrscript/%.wasm: nostrscript/%.ts nostrscript/nostr.ts Makefile
asc $< --runtime stub --outFile $@ --optimize
2023-08-06 20:46:23 +00:00
tags:
find damus-c -name '*.c' -or -name '*.h' | xargs ctags
clean:
rm nostrscript/*.wasm
2023-08-06 20:46:23 +00:00
.PHONY: tags