prometheus/Makefile

50 lines
1.3 KiB
Makefile
Raw Normal View History

# Copyright 2013 Prometheus Team
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.
TEST_ARTIFACTS = prometheus prometheus.build search_index
2012-11-24 11:33:34 +00:00
all: test
test: build
2013-03-28 17:17:50 +00:00
go test ./... $(GO_TEST_FLAGS)
2012-11-24 11:33:34 +00:00
build:
$(MAKE) -C model
$(MAKE) -C web
2012-11-24 11:33:34 +00:00
go build ./...
2013-03-26 11:33:48 +00:00
binary: build
go build -o prometheus.build
2012-11-24 11:33:34 +00:00
clean:
$(MAKE) -C model clean
$(MAKE) -C web clean
rm -rf $(TEST_ARTIFACTS)
2012-11-24 11:33:34 +00:00
-find . -type f -iname '*~' -exec rm '{}' ';'
-find . -type f -iname '*#' -exec rm '{}' ';'
-find . -type f -iname '.#*' -exec rm '{}' ';'
2012-11-24 11:33:34 +00:00
format:
find . -iname '*.go' | egrep -v "generated|\.(l|y)\.go" | xargs -n1 gofmt -w -s=true
2012-11-24 11:33:34 +00:00
2013-01-27 16:53:20 +00:00
advice:
go tool vet .
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'
documentation: search_index
godoc -http=:6060 -index -index_files='search_index'
2013-03-26 11:33:48 +00:00
.PHONY: advice binary build clean documentation format search_index test