prometheus/Makefile

110 lines
3.0 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
$(GOCC): $(BUILD_PATH)/cache/$(GOPKG) $(FULL_GOPATH)
tar -C $(BUILD_PATH)/root -xzf $<
touch $@
advice:
$(GO) vet ./...
2013-03-26 11:33:48 +00:00
binary: build
2012-11-24 11:33:34 +00:00
build: config dependencies tools web
$(GO) build -o prometheus $(BUILDFLAGS) .
2013-08-05 12:40:24 +00:00
docker: build
docker build -t prometheus:$(REV) .
tarball: $(ARCHIVE)
$(ARCHIVE): build
tar -czf $(ARCHIVE) prometheus
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)
benchmark: config dependencies tools
$(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
$(MAKE) -C tools clean
$(MAKE) -C web 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
config: dependencies
$(MAKE) -C config
dependencies: $(GOCC) $(FULL_GOPATH)
$(GO) get github.com/tools/godep
$(GODEP) restore
$(GO) get -d
documentation: search_index
godoc -http=:6060 -index -index_files='search_index'
2012-11-24 11:33:34 +00:00
format:
2015-01-22 17:12:19 +00:00
find . -iname '*.go' | egrep -v "^\./\.build|./generated|\./Godeps|\.(l|y)\.go" | 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)
run: binary
./prometheus -alsologtostderr -stderrthreshold=0 $(ARGUMENTS)
2013-01-27 16:53:20 +00:00
2012-11-25 15:04:58 +00:00
search_index:
godoc -index -write_index -index_files='search_index'
server: config dependencies
$(MAKE) -C server
# $(FULL_GOPATH) is responsible for ensuring that the builder has not done anything
# stupid like working on Prometheus outside of ${GOPATH}.
$(FULL_GOPATH):
-[ -d "$(FULL_GOPATH)" ] || { mkdir -vp $(FULL_GOPATH_BASE) ; ln -s "$(PWD)" "$(FULL_GOPATH)" ; }
[ -d "$(FULL_GOPATH)" ]
test: config dependencies tools web
$(GO) test $(GO_TEST_FLAGS) ./...
tools: dependencies
$(MAKE) -C tools
web: config dependencies
$(MAKE) -C web
2012-11-25 15:04:58 +00:00
.PHONY: advice binary build clean config dependencies documentation format race_condition_binary race_condition_run release run search_index tag tarball test tools