mirror of
https://github.com/gin-gonic/gin.git
synced 2025-10-24 02:32:17 +08:00
Avoid pulling in any external example dependencies, when using go get. Go tools ignore folders with names which start with `_`.
11 lines
227 B
Makefile
11 lines
227 B
Makefile
all: deps build
|
|
|
|
.PHONY: deps
|
|
deps:
|
|
go get -d -v github.com/dustin/go-broadcast/...
|
|
go get -d -v github.com/manucorporat/stats/...
|
|
|
|
.PHONY: build
|
|
build: deps
|
|
go build -o realtime-advanced main.go rooms.go routes.go stats.go
|