prometheus/Makefile

94 lines
2.6 KiB
Makefile
Raw Normal View History

# 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
#
2012-11-26 19:11:34 +00:00
# http://www.apache.org/licenses/LICENSE-2.0
#
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
include Makefile.INCLUDE
2012-11-24 11:33:34 +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)
tar -C $(BUILD_PATH)/root -xzf $<
touch $@
2015-02-17 01:06:14 +00:00
advice: $(GOCC)
$(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
$(GO) build -o promtool $(BUILDFLAGS) github.com/prometheus/prometheus/cmd/promtool
2013-08-05 12:40:24 +00:00
docker: build
docker build -t prometheus:$(REV) .
tarball: $(ARCHIVE)
$(ARCHIVE): build
2015-06-25 17:11:49 +00:00
tar -czf $(ARCHIVE) prometheus promtool consoles console_libraries
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
$(BUILD_PATH)/cache/$(GOPKG):
$(CURL) -o $@ -L $(GOURL)/$(GOPKG)
2015-06-25 17:11:49 +00:00
benchmark: dependencies
$(GO) test $(GO_TEST_FLAGS) -test.run='NONE' -test.bench='.*' -test.benchmem ./... | tee benchmark.txt
2012-11-24 11:33:34 +00:00
clean:
$(MAKE) -C $(BUILD_PATH) clean
rm -rf $(TEST_ARTIFACTS)
-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)
ln -s $(MAKEFILE_DIR) $@
2015-02-17 01:06:14 +00:00
$(GOPATH):
cp -a $(MAKEFILE_DIR)/Godeps/_workspace "$(GOPATH)"
2015-02-17 01:06:14 +00:00
dependencies: $(GOCC) | $(SELFLINK)
documentation: search_index
godoc -http=:6060 -index -index_files='search_index'
2015-02-17 01:06:14 +00:00
format: dependencies
find . -iname '*.go' | egrep -v "^\./(\.build|Godeps)/" | 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
$(GO) build -race -o prometheus.race $(BUILDFLAGS) .
2013-06-05 12:05:42 +00:00
race_condition_run: race_condition_binary
./prometheus.race $(ARGUMENTS)
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
$(GO) test $(GO_TEST_FLAGS) ./...
2015-02-17 01:06:14 +00:00
web: dependencies
$(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