2013-02-07 11:38:01 +01:00
# Copyright 2013 Prometheus Team
2012-11-26 20:11:34 +01: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 11:38:01 +01:00
#
2012-11-26 20:11:34 +01:00
# http://www.apache.org/licenses/LICENSE-2.0
2013-02-07 11:38:01 +01:00
#
2012-11-26 20:11:34 +01: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-02-01 13:35:07 +01:00
TEST_ARTIFACTS = prometheus prometheus.build search_index
2012-11-24 12:33:34 +01:00
all : test
test : build
go test ./...
build :
2013-03-20 12:31:42 +01:00
./utility/embed-static.sh web/static web/templates | gofmt > web/blob/files.go
2012-11-24 12:33:34 +01:00
$( MAKE) -C model
go build ./...
2013-02-01 13:35:07 +01:00
go build -o prometheus.build
2012-11-24 12:33:34 +01:00
clean :
2013-03-18 17:48:50 +01:00
rm -rf web/static/blob/files.go
2012-11-24 12:33:34 +01:00
rm -rf $( TEST_ARTIFACTS)
$( MAKE) -C model clean
-find . -type f -iname '*~' -exec rm '{}' ';'
-find . -type f -iname '*#' -exec rm '{}' ';'
2012-11-28 20:22:49 +01:00
-find . -type f -iname '.#*' -exec rm '{}' ';'
2012-11-24 12:33:34 +01:00
format :
2013-01-07 23:24:26 +01:00
find . -iname '*.go' | egrep -v "generated|\.(l|y)\.go" | xargs -n1 gofmt -w -s= true
2012-11-24 12:33:34 +01:00
2013-01-27 17:53:20 +01:00
advice :
2013-03-14 14:31:19 -07:00
go tool vet .
2013-01-27 17:53:20 +01:00
2012-11-25 16:04:58 +01:00
search_index :
godoc -index -write_index -index_files= 'search_index'
documentation : search_index
godoc -http= :6060 -index -index_files= 'search_index'
2013-01-27 17:53:20 +01:00
.PHONY : advice build clean documentation format search_index test
2012-12-01 13:30:23 +01:00