]> git.scottworley.com Git - vopamoi/blame_incremental - Makefile
Revert "When creating a task while viewing a tag, the new task has that tag"
[vopamoi] / Makefile
... / ...
CommitLineData
1objs = vopamoi.js
2
3all: $(objs)
4
5.PHONY: all clean
6
7%.js: %.ts
8 tsc --strict --target ES2020 $<
9
10clean:
11 -rm $(objs)