2015-01-22 03:07:45 +08:00
|
|
|
# Copyright 2013 The Prometheus Authors
|
2012-11-27 03:11:34 +08: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 18:38:01 +08:00
|
|
|
#
|
2012-11-27 03:11:34 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-02-07 18:38:01 +08:00
|
|
|
#
|
2012-11-27 03:11:34 +08: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 20:05:42 +08:00
|
|
|
TEST_ARTIFACTS = prometheus prometheus.race search_index
|
2012-11-24 19:33:34 +08:00
|
|
|
|
2013-04-14 12:59:55 +08:00
|
|
|
include Makefile.INCLUDE
|
2012-11-24 19:33:34 +08:00
|
|
|
|
2013-05-07 21:48:33 +08:00
|
|
|
all: binary test
|
2012-11-24 19:33:34 +08:00
|
|
|
|
2015-02-17 09:06:14 +08:00
|
|
|
$(GOCC): $(BUILD_PATH)/cache/$(GOPKG)
|
2013-06-25 20:02:27 +08:00
|
|
|
tar -C $(BUILD_PATH)/root -xzf $<
|
2013-06-13 21:17:03 +08:00
|
|
|
touch $@
|
|
|
|
|
|
2015-02-17 09:06:14 +08:00
|
|
|
advice: $(GOCC)
|
2014-11-18 02:20:39 +08:00
|
|
|
$(GO) vet ./...
|
2013-03-26 19:33:48 +08:00
|
|
|
|
|
|
|
|
binary: build
|
2012-11-24 19:33:34 +08:00
|
|
|
|
2015-06-26 01:11:49 +08:00
|
|
|
build: dependencies $(GOPATH)
|
2015-06-15 18:59:55 +08:00
|
|
|
$(GO) build -o prometheus $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/prometheus
|
2015-06-18 18:21:53 +08:00
|
|
|
$(GO) build -o promtool $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/promtool
|
2013-06-13 21:17:03 +08:00
|
|
|
|
2013-08-05 20:40:24 +08:00
|
|
|
docker: build
|
|
|
|
|
docker build -t prometheus:$(REV) .
|
|
|
|
|
|
2014-03-11 22:21:10 +08:00
|
|
|
tarball: $(ARCHIVE)
|
|
|
|
|
|
|
|
|
|
$(ARCHIVE): build
|
2015-06-26 01:11:49 +08:00
|
|
|
tar -czf $(ARCHIVE) prometheus promtool consoles console_libraries
|
2014-03-11 22:21:10 +08: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 22:33:19 +08:00
|
|
|
|
2013-06-25 20:02:27 +08:00
|
|
|
$(BUILD_PATH)/cache/$(GOPKG):
|
2014-11-18 02:20:39 +08:00
|
|
|
$(CURL) -o $@ -L $(GOURL)/$(GOPKG)
|
2013-04-14 12:59:55 +08:00
|
|
|
|
2015-06-26 01:11:49 +08:00
|
|
|
benchmark: dependencies
|
2014-12-15 20:47:14 +08:00
|
|
|
$(GO) test $(GO_TEST_FLAGS) -test.run='NONE' -test.bench='.*' -test.benchmem ./... | tee benchmark.txt
|
2014-04-16 02:49:09 +08:00
|
|
|
|
2012-11-24 19:33:34 +08:00
|
|
|
clean:
|
2013-06-25 20:02:27 +08:00
|
|
|
$(MAKE) -C $(BUILD_PATH) clean
|
2013-03-22 01:29:33 +08:00
|
|
|
rm -rf $(TEST_ARTIFACTS)
|
2014-11-18 02:20:39 +08:00
|
|
|
-rm $(ARCHIVE)
|
|
|
|
|
-find . -type f -name '*~' -exec rm '{}' ';'
|
|
|
|
|
-find . -type f -name '*#' -exec rm '{}' ';'
|
|
|
|
|
-find . -type f -name '.#*' -exec rm '{}' ';'
|
2012-11-24 19:33:34 +08:00
|
|
|
|
2015-02-17 09:06:14 +08:00
|
|
|
$(SELFLINK): $(GOPATH)
|
2015-02-23 11:30:10 +08:00
|
|
|
ln -s $(MAKEFILE_DIR) $@
|
2015-02-17 09:06:14 +08:00
|
|
|
|
|
|
|
|
$(GOPATH):
|
2015-06-24 05:58:09 +08:00
|
|
|
cp -a $(MAKEFILE_DIR)/Godeps/_workspace "$(GOPATH)"
|
2015-02-17 09:06:14 +08:00
|
|
|
|
|
|
|
|
dependencies: $(GOCC) | $(SELFLINK)
|
2013-06-13 21:17:03 +08:00
|
|
|
|
2013-04-14 12:59:55 +08:00
|
|
|
documentation: search_index
|
|
|
|
|
godoc -http=:6060 -index -index_files='search_index'
|
|
|
|
|
|
2015-02-17 09:06:14 +08:00
|
|
|
format: dependencies
|
2015-06-15 22:29:21 +08:00
|
|
|
find . -iname '*.go' | egrep -v "^\./(\.build|Godeps)/" | xargs -n1 $(GOFMT) -w -s=true
|
2013-06-11 23:45:26 +08:00
|
|
|
|
2013-06-05 20:05:42 +08:00
|
|
|
race_condition_binary: build
|
2014-11-18 02:20:39 +08:00
|
|
|
$(GO) build -race -o prometheus.race $(BUILDFLAGS) .
|
2013-06-05 20:05:42 +08:00
|
|
|
|
|
|
|
|
race_condition_run: race_condition_binary
|
|
|
|
|
./prometheus.race $(ARGUMENTS)
|
|
|
|
|
|
2012-11-25 23:04:58 +08:00
|
|
|
search_index:
|
|
|
|
|
godoc -index -write_index -index_files='search_index'
|
|
|
|
|
|
2015-06-26 01:11:49 +08:00
|
|
|
test: dependencies
|
2013-08-04 00:46:02 +08:00
|
|
|
$(GO) test $(GO_TEST_FLAGS) ./...
|
2013-04-14 12:59:55 +08:00
|
|
|
|
2015-02-17 09:06:14 +08:00
|
|
|
web: dependencies
|
2013-04-14 12:59:55 +08:00
|
|
|
$(MAKE) -C web
|
2012-11-25 23:04:58 +08:00
|
|
|
|
2015-06-26 01:11:49 +08:00
|
|
|
.PHONY: advice binary build clean dependencies documentation format race_condition_binary race_condition_run release run search_index tag tarball test
|