forked from incident-io/singer-tap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
54 lines (40 loc) · 1.42 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
PROG=bin/tap-incident
VERSION=$(shell git rev-parse --short HEAD)-dev
BUILD_COMMAND=go build -ldflags "-s -w -X main.Version=$(VERSION)"
################################################################################
# Build
################################################################################
.PHONY: prog darwin linux generate clean
prog: $(PROG)
darwin: $(PROG:=.darwin_amd64)
linux: $(PROG:=.linux_amd64)
bin/%.linux_amd64:
CGO_ENABLED=0 GOOS=linux $(BUILD_COMMAND) -a -o $@ cmd/$*/*.go
bin/%.darwin_amd64:
CGO_ENABLED=0 GOOS=darwin $(BUILD_COMMAND) -a -o $@ cmd/$*/*.go
bin/%:
$(BUILD_COMMAND) -o $@ cmd/$*/*.go
generate:
go generate ./...
clean:
rm -rfv $(PROG)
################################################################################
# Development
################################################################################
# Installs development tools from tools.go
tools:
go mod download \
&& cat tools.go | grep _ | awk -F'"' '{print $$2}' | xargs -tI % go install %
################################################################################
# Clients
################################################################################
.PHONY: client/client.gen.go client/openapi3.json
client/client.gen.go:
rm -rf $@
oapi-codegen \
--generate types,client \
--package client \
--o $@ \
client/openapi3.json
client/openapi3.json:
curl https://api.incident.io/v1/openapi.json | jq . > $@