mapserver/Makefile

21 lines
321 B
Makefile
Raw Normal View History

2019-01-05 17:21:24 +01:00
2019-01-11 10:49:19 +01:00
STATIC_VFS=vfs/static.go
test: $(STATIC_VFS)
2019-01-05 17:21:24 +01:00
go test ./...
2019-01-21 19:18:07 +01:00
clean:
rm $(STATIC_VFS)
rm mapserver
2019-01-11 10:49:19 +01:00
$(STATIC_VFS):
2019-01-11 10:50:15 +01:00
go get github.com/mjibson/esc
2019-01-11 10:49:19 +01:00
${HOME}/go/bin/esc -o $@ -prefix="static/" -pkg vfs static
build: $(STATIC_VFS)
2019-01-08 08:47:28 +01:00
go build
2019-01-17 15:59:59 +01:00
profile:
go test -cpuprofile=cprof ./tilerenderer
go tool pprof --text cprof