Files
fnx_web/Makefile

16 lines
425 B
Makefile
Raw Normal View History

2018-01-16 09:26:23 +01:00
run: ts
go run main.go
2018-01-16 11:47:48 +01:00
runboth: ts
cd ../pixeldrain-server-launcher && go run main.go
2018-01-16 09:26:23 +01:00
build: ts
go build main.go -o pixeldrain-web
2018-01-16 11:47:48 +01:00
deps:
npm install -g typescript
2018-01-16 09:26:23 +01:00
ts:
tsc --strict res/static/res/typescript/lib/*.ts --outFile res/static/res/script/pixellib.js
tsc --strict res/static/res/typescript/home/*.ts \
res/static/res/typescript/lib/*.ts \
--outFile res/static/res/script/home.js