File: Makefile

package info (click to toggle)
garagemq 0.0~git20200204.15e6a9d%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,836 kB
  • sloc: xml: 4,990; javascript: 989; makefile: 29
file content (23 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
amqp.gen:
	go run protocol/*.go && go fmt amqp/*_generated.go

deps:
	dep ensure && cd admin-frontend && yarn install

build.all: deps
	go build -o bin/garagemq main.go && cd admin-frontend && yarn build

build:
	env GO111MODULE=on go build -o bin/garagemq main.go

run: build
	bin/garagemq

profile: build
	bin/garagemq --hprof=true

vet:
	env GO111MODULE=on go vet github.com/valinurovam/garagemq...

test:
	ulimit -n 2048 && env GO111MODULE=on go test -cover github.com/valinurovam/garagemq...