2015-01-21 19:07:45 +00:00
|
|
|
# Copyright 2013 The Prometheus Authors
|
2012-11-26 19:11:34 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2013-02-07 10:38:01 +00:00
|
|
|
#
|
2012-11-26 19:11:34 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-02-07 10:38:01 +00:00
|
|
|
#
|
2012-11-26 19:11:34 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2013-06-05 12:05:42 +00:00
|
|
|
TEST_ARTIFACTS = prometheus prometheus.race search_index
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-04-14 04:59:55 +00:00
|
|
|
include Makefile.INCLUDE
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-05-07 13:48:33 +00:00
|
|
|
all: binary test
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2015-02-17 01:06:14 +00:00
|
|
|
$(GOCC): $(BUILD_PATH)/cache/$(GOPKG)
|
2013-06-25 12:02:27 +00:00
|
|
|
tar -C $(BUILD_PATH)/root -xzf $<
|
2013-06-13 13:17:03 +00:00
|
|
|
touch $@
|
|
|
|
|
2015-02-17 01:06:14 +00:00
|
|
|
advice: $(GOCC)
|
2014-11-17 18:20:39 +00:00
|
|
|
$(GO) vet ./...
|
2013-03-26 11:33:48 +00:00
|
|
|
|
|
|
|
binary: build
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2015-06-25 17:11:49 +00:00
|
|
|
build: dependencies $(GOPATH)
|
2015-06-15 10:59:55 +00:00
|
|
|
$(GO) build -o prometheus $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/prometheus
|
2015-06-18 10:21:53 +00:00
|
|
|
$(GO) build -o promtool $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/promtool
|
2013-06-13 13:17:03 +00:00
|
|
|
|
2015-06-26 07:16:59 +00:00
|
|
|
docker:
|
2013-08-05 12:40:24 +00:00
|
|
|
docker build -t prometheus:$(REV) .
|
|
|
|
|
2014-03-11 14:21:10 +00:00
|
|
|
tarball: $(ARCHIVE)
|
|
|
|
|
2015-09-10 14:17:51 +00:00
|
|
|
$(GOPATH):
|
|
|
|
mkdir -p $(GOPATH)
|
|
|
|
cp -a $(MAKEFILE_DIR)/vendor/ $(GOPATH)/src
|
|
|
|
|
2014-03-11 14:21:10 +00:00
|
|
|
$(ARCHIVE): build
|
2015-07-28 15:52:41 +00:00
|
|
|
mkdir -p $(ARCHIVEDIR)
|
|
|
|
cp -a prometheus promtool consoles console_libraries $(ARCHIVEDIR)
|
|
|
|
tar -czf $(ARCHIVE) $(ARCHIVEDIR)
|
|
|
|
rm -rf $(ARCHIVEDIR)
|
2014-03-11 14:21:10 +00:00
|
|
|
|
|
|
|
release: REMOTE ?= $(error "can't upload, REMOTE not set")
|
|
|
|
release: REMOTE_DIR ?= $(error "can't upload, REMOTE_DIR not set")
|
|
|
|
release: $(ARCHIVE)
|
|
|
|
scp $< $(REMOTE):$(REMOTE_DIR)/
|
|
|
|
|
|
|
|
tag:
|
|
|
|
git tag $(VERSION)
|
|
|
|
git push --tags
|
2013-08-19 14:33:19 +00:00
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
$(BUILD_PATH)/cache/$(GOPKG):
|
2014-11-17 18:20:39 +00:00
|
|
|
$(CURL) -o $@ -L $(GOURL)/$(GOPKG)
|
2013-04-14 04:59:55 +00:00
|
|
|
|
2015-06-25 17:11:49 +00:00
|
|
|
benchmark: dependencies
|
2014-12-15 12:47:14 +00:00
|
|
|
$(GO) test $(GO_TEST_FLAGS) -test.run='NONE' -test.bench='.*' -test.benchmem ./... | tee benchmark.txt
|
2014-04-15 18:49:09 +00:00
|
|
|
|
2012-11-24 11:33:34 +00:00
|
|
|
clean:
|
2013-06-25 12:02:27 +00:00
|
|
|
$(MAKE) -C $(BUILD_PATH) clean
|
2013-03-21 17:29:33 +00:00
|
|
|
rm -rf $(TEST_ARTIFACTS)
|
2014-11-17 18:20:39 +00:00
|
|
|
-rm $(ARCHIVE)
|
|
|
|
-find . -type f -name '*~' -exec rm '{}' ';'
|
|
|
|
-find . -type f -name '*#' -exec rm '{}' ';'
|
|
|
|
-find . -type f -name '.#*' -exec rm '{}' ';'
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2015-02-17 01:06:14 +00:00
|
|
|
$(SELFLINK): $(GOPATH)
|
2015-09-10 14:17:51 +00:00
|
|
|
mkdir -p `dirname $@`
|
2015-02-23 03:30:10 +00:00
|
|
|
ln -s $(MAKEFILE_DIR) $@
|
2015-02-17 01:06:14 +00:00
|
|
|
|
|
|
|
dependencies: $(GOCC) | $(SELFLINK)
|
2013-06-13 13:17:03 +00:00
|
|
|
|
2013-04-14 04:59:55 +00:00
|
|
|
documentation: search_index
|
|
|
|
godoc -http=:6060 -index -index_files='search_index'
|
|
|
|
|
2015-02-17 01:06:14 +00:00
|
|
|
format: dependencies
|
2015-09-10 14:17:51 +00:00
|
|
|
find . -iname '*.go' | egrep -v "^\./(\.build|vendor)/" | xargs -n1 $(GOFMT) -w -s=true
|
2013-06-11 15:45:26 +00:00
|
|
|
|
2013-06-05 12:05:42 +00:00
|
|
|
race_condition_binary: build
|
2015-07-06 20:26:41 +00:00
|
|
|
$(GO) build -race -o prometheus.race $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/prometheus
|
|
|
|
$(GO) build -race -o promtool.race $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/promtool
|
2013-06-05 12:05:42 +00:00
|
|
|
|
2012-11-25 15:04:58 +00:00
|
|
|
search_index:
|
|
|
|
godoc -index -write_index -index_files='search_index'
|
|
|
|
|
2015-06-25 17:11:49 +00:00
|
|
|
test: dependencies
|
2013-08-03 16:46:02 +00:00
|
|
|
$(GO) test $(GO_TEST_FLAGS) ./...
|
2013-04-14 04:59:55 +00:00
|
|
|
|
2015-02-17 01:06:14 +00:00
|
|
|
web: dependencies
|
2013-04-14 04:59:55 +00:00
|
|
|
$(MAKE) -C web
|
2012-11-25 15:04:58 +00:00
|
|
|
|
2015-06-25 17:11:49 +00:00
|
|
|
.PHONY: advice binary build clean dependencies documentation format race_condition_binary race_condition_run release run search_index tag tarball test
|