pogo/Makefile
2017-10-05 12:11:55 +05:30

18 lines
229 B
Makefile

all:
go build -o pogoapp
windows:
go build -o pogoapp.exe
linux:
go build -o pogoapp
install:
go get github.com/gmemstr/feeds
go get github.com/fsnotify/fsnotify
go get github.com/gorilla/mux
docker:
docker build .