mirror of
https://github.com/demostf/demo.js
synced 2026-06-03 16:44:12 +02:00
12 lines
157 B
Makefile
12 lines
157 B
Makefile
TS_JS := $(TS_SRC:.ts=.js)
|
|
|
|
.PHONY: all tsc
|
|
|
|
all: $(TS_JS)
|
|
|
|
$(TS_JS): %.js: %.ts js.stub
|
|
$(TSLINT) $<
|
|
|
|
js.stub: $(TS_SRC)
|
|
$(TSC) $^
|
|
@touch $@
|