-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
44 lines (39 loc) · 1.43 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
BEAT_NAME=qbeat
BEAT_PATH=github.com/felix-lessoer/qbeat
BEAT_GOPATH=$(firstword $(subst :, ,${GOPATH}))
SYSTEM_TESTS=false
TEST_ENVIRONMENT=false
ES_BEATS?=./vendor/github.com/elastic/beats
GOPACKAGES=$(shell govendor list -no-status +local)
GOBUILD_FLAGS=-i -ldflags "-X $(BEAT_PATH)/vendor/github.com/elastic/beats/libbeat/version.buildTime=$(NOW) -X $(BEAT_PATH)/vendor/github.com/elastic/beats/libbeat/version.commit=$(COMMIT_ID)"
MAGE_IMPORT_PATH=${BEAT_PATH}/vendor/github.com/magefile/mage
# Path to the libbeat Makefile
-include $(ES_BEATS)/libbeat/scripts/Makefile
# Initial beat setup
.PHONY: setup
setup: update git-init
# Copy beats into vendor directory
#.PHONY: copy-vendor
#copy-vendor:
# mkdir -p vendor/github.com/elastic
# cp -R ${BEAT_GOPATH}/src/github.com/elastic/beats vendor/github.com/elastic/
# rm -rf vendor/github.com/elastic/beats/.git vendor/github.com/elastic/beats/x-pack
# mkdir -p vendor/github.com/magefile
# cp -R ${BEAT_GOPATH}/src/github.com/elastic/beats/vendor/github.com/magefile/mage vendor/github.com/magefile
.PHONY: git-init
git-init:
git init
git add README.md CONTRIBUTING.md
git commit -m "Initial commit"
git add LICENSE
git commit -m "Add the LICENSE"
git add .gitignore
git commit -m "Add git settings"
git add .
git reset -- .travis.yml
git commit -m "Add qbeat"
git add .travis.yml
git commit -m "Add Travis CI"
# Collects all dependencies and then calls update
.PHONY: collect
collect: fields