mirror of
				https://github.com/gin-gonic/gin.git
				synced 2025-11-04 17:22:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			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
 |