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