17 lines
341 B
Makefile
17 lines
341 B
Makefile
all: togoist
|
|
|
|
.PHONY: dependencies
|
|
|
|
dependencies:
|
|
go get -u github.com/gopherjs/gopherjs
|
|
go get -u github.com/bep/debounce
|
|
go get -u github.com/gopherjs/jquery
|
|
go get -u github.com/go-humble/locstor
|
|
go get -u gitlab.com/chrissexton/togoist
|
|
|
|
togoist: togoist.go web.go dependencies
|
|
@go generate
|
|
|
|
clean:
|
|
rm -f togoist.js togoist.js.map
|