]> git.scottworley.com Git - vopamoi/blob - Makefile
"G" to Go to the count-prefixed line. eg: "1G" to go to the top
[vopamoi] / Makefile
1 objs = vopamoi.js
2
3 all: $(objs)
4
5 .PHONY: all clean
6
7 %.js: %.ts
8 tsc --strict --target ES2020 $<
9
10 clean:
11 -rm $(objs)