This repository has been archived by the owner on May 24, 2018. It is now read-only.
forked from aws-samples/aws-lambda-fanout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
65 lines (45 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
65
SHELL := /bin/bash
export GOPATH=$(CURDIR)
# The destination for binaries
BUILD_DIR = build
# The name of the executable (default is current directory name)
TARGET := ./src/FanOutConfigurator/FanOutConfigurator
.DEFAULT_GOAL: $(TARGET)
# These will be provided to the target
VERSION :=0.1.0
# Use linker flags to provide version/build settings to the target
LDFLAGS=-ldflags "-X=main.Version=$(VERSION) "
# go source files, ignore vendor directory
SRC = $(shell find . -type f -name '*.go' -path "./src/FanOutConfigurator/*")
.PHONY: all build clean install uninstall fmt simplify check run
all: check compile
$(TARGET): $(SRC)
@go build $(LDFLAGS) -o $(TARGET)
compile: check goxcompile
goxcompile: export CGO_ENABLED=0
goxcompile: dependencies
gox -arch amd64 -os darwin -os linux -os windows -output "$(BUILD_DIR)/{{.OS}}/$(NAME)/${TARGET}" ./src/FanOutConfigurator
clean:
@rm -f $(TARGET)
@rm -rf $(BUILD_DIR)
install: dependencies
@go install $(LDFLAGS)
uninstall: clean
@rm -f $$(which ${TARGET})
fmt:
@gofmt -l -w $(SRC)
simplify:
@gofmt -s -l -w $(SRC)
package: compile
@for d in $$(ls build); do tar -czf $(BUILD_DIR)/${TARGET}-$${d}.tar.gz -C $(BUILD_DIR)/$${d} .; done
check: dependencies
#@test -z $(shell gofmt -l ${TARGET}.go | tee /dev/stderr) || echo "[WARN] Fix formatting issues with 'make fmt'"
@for d in $$(go list ./... | grep -v /vendor/); do golint $${d}; done
@go tool vet ${SRC}
run: install
@$(TARGET)
dependencies:
go get github.com/mitchellh/gox
go get github.com/aws/aws-sdk-go/aws/session
go get gopkg.in/yaml.v2
go get gopkg.in/fatih/set.v0