1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-03 16:44:12 +02:00
demo.js/Makefile
2016-12-22 00:19:48 +01:00

15 lines
202 B
Makefile

tsc=node_modules/.bin/tsc
.PHONY: all
all: build
node_modules: package.json
npm install --deps
.PHONY: watch
watch: node_modules
node $(tsc) --watch
.PHONY: build
build: node_modules
node $(tsc)