pogo/Makefile

18 lines
229 B
Makefile
Raw Normal View History

all:
2017-10-05 07:41:55 +01:00
go build -o pogoapp
windows:
2017-10-05 07:41:55 +01:00
go build -o pogoapp.exe
linux:
2017-10-05 07:41:55 +01:00
go build -o pogoapp
install:
go get github.com/gmemstr/feeds
go get github.com/fsnotify/fsnotify
go get github.com/gorilla/mux
docker:
2017-09-07 04:02:59 +01:00
docker build .