Compare commits
No commits in common. "3265564835282d06d21f4f24e5dcbe9b49d23ae3" and "5199576a8713898e86e7ea4b6e6b0a1186b9f587" have entirely different histories.
3265564835
...
5199576a87
1 changed files with 0 additions and 26 deletions
|
@ -1,26 +0,0 @@
|
|||
# Go parameters
|
||||
GOCMD = go
|
||||
GOBUILD = $(GOCMD) build
|
||||
GOCLEAN = $(GOCMD) clean
|
||||
GOTEST = $(GOCMD) test
|
||||
GOGET = $(GOCMD) get
|
||||
|
||||
# Build target
|
||||
build:
|
||||
$(GOBUILD) -o bin/server main.go
|
||||
|
||||
# Clean target
|
||||
clean:
|
||||
$(GOCLEAN)
|
||||
rm -f bin/server
|
||||
|
||||
# Test target
|
||||
test:
|
||||
$(GOTEST) -v ./...
|
||||
|
||||
# Get dependencies target
|
||||
deps:
|
||||
$(GOGET) -v ./...
|
||||
|
||||
# Default target
|
||||
default: build
|
Loading…
Reference in a new issue