-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
42 lines (36 loc) · 933 Bytes
/
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
BEATNAME=logstashbeat
BEAT_DIR=github.com/consulthys
SYSTEM_TESTS=false
TEST_ENVIRONMENT=false
ES_BEATS=./vendor/github.com/elastic/beats
GOPACKAGES=$(shell glide novendor)
PREFIX?=.
# Path to the libbeat Makefile
-include $(ES_BEATS)/libbeat/scripts/Makefile
.PHONY: init
init:
glide update --no-recursive
make update
git init
.PHONY: commit
commit:
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 logstashbeat"
git add .travis.yml
git commit -m "Add Travis CI"
.PHONY: update-deps
update-deps:
glide update --no-recursive --strip-vcs
# This is called by the beats packer before building starts
.PHONY: before-build
before-build:
# Create binary packages for the beat
pack: create-packer
cd dev-tools/packer; make deps images logstashbeat