Makefile (254B)
1 2 all: nostrscript/primal.wasm 3 4 nostrscript/%.wasm: nostrscript/%.ts nostrscript/nostr.ts Makefile 5 asc $< --runtime stub --outFile $@ --optimize 6 7 tags: 8 find damus-c -name '*.c' -or -name '*.h' | xargs ctags 9 10 clean: 11 rm nostrscript/*.wasm 12 13 .PHONY: tags