2013-02-07 02:38:01 -08:00
|
|
|
# Copyright 2013 Prometheus Team
|
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-05-05 10:32:04 -07:00
|
|
|
TEST_ARTIFACTS = prometheus 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
|
|
|
|
2013-04-13 21:59:55 -07:00
|
|
|
advice:
|
|
|
|
go tool vet .
|
2013-03-26 04:33:48 -07:00
|
|
|
|
|
|
|
binary: build
|
2013-05-05 10:32:04 -07:00
|
|
|
go build $(BUILDFLAGS) .
|
2012-11-24 03:33:34 -08:00
|
|
|
|
2013-05-10 07:41:02 -07:00
|
|
|
build: preparation config model tools web
|
2013-04-13 21:59:55 -07:00
|
|
|
|
2012-11-24 03:33:34 -08:00
|
|
|
clean:
|
2013-04-13 21:59:55 -07:00
|
|
|
$(MAKE) -C build clean
|
2013-04-30 11:20:14 -07:00
|
|
|
$(MAKE) -C config clean
|
2012-11-24 03:33:34 -08:00
|
|
|
$(MAKE) -C model clean
|
2013-05-10 07:41:02 -07:00
|
|
|
$(MAKE) -C tools clean
|
2013-03-21 10:29:33 -07:00
|
|
|
$(MAKE) -C web clean
|
|
|
|
rm -rf $(TEST_ARTIFACTS)
|
2012-11-24 03:33:34 -08:00
|
|
|
-find . -type f -iname '*~' -exec rm '{}' ';'
|
|
|
|
-find . -type f -iname '*#' -exec rm '{}' ';'
|
2012-11-28 11:22:49 -08:00
|
|
|
-find . -type f -iname '.#*' -exec rm '{}' ';'
|
2012-11-24 03:33:34 -08:00
|
|
|
|
2013-04-30 11:20:14 -07:00
|
|
|
config: preparation
|
|
|
|
$(MAKE) -C config
|
|
|
|
|
2013-04-13 21:59:55 -07:00
|
|
|
documentation: search_index
|
|
|
|
godoc -http=:6060 -index -index_files='search_index'
|
|
|
|
|
2012-11-24 03:33:34 -08:00
|
|
|
format:
|
2013-01-07 14:24:26 -08:00
|
|
|
find . -iname '*.go' | egrep -v "generated|\.(l|y)\.go" | xargs -n1 gofmt -w -s=true
|
2012-11-24 03:33:34 -08:00
|
|
|
|
2013-04-13 21:59:55 -07:00
|
|
|
model: preparation
|
|
|
|
$(MAKE) -C model
|
|
|
|
|
|
|
|
package: binary
|
|
|
|
cp prometheus.build build/package/prometheus
|
|
|
|
rsync -av build/root/lib/ build/package/lib/
|
|
|
|
|
|
|
|
preparation: source_path
|
|
|
|
$(MAKE) -C build
|
|
|
|
|
|
|
|
run: binary
|
2013-05-05 10:32:04 -07:00
|
|
|
./prometheus $(ARGUMENTS)
|
2013-01-27 08:53:20 -08:00
|
|
|
|
2012-11-25 07:04:58 -08:00
|
|
|
search_index:
|
|
|
|
godoc -index -write_index -index_files='search_index'
|
|
|
|
|
2013-05-05 10:32:04 -07:00
|
|
|
server: config model preparation
|
|
|
|
$(MAKE) -C server
|
|
|
|
|
2013-04-13 21:59:55 -07:00
|
|
|
# source_path is responsible for ensuring that the builder has not done anything
|
|
|
|
# stupid like working on Prometheus outside of ${GOPATH}.
|
|
|
|
source_path:
|
|
|
|
-[ -d "$(FULL_GOPATH)" ] || { mkdir -vp $(FULL_GOPATH_BASE) ; ln -s "$(PWD)" "$(FULL_GOPATH)" ; }
|
|
|
|
[ -d "$(FULL_GOPATH)" ]
|
|
|
|
|
|
|
|
test: build
|
2013-05-05 10:32:04 -07:00
|
|
|
go test ./... $(GO_TEST_FLAGS)
|
2013-04-13 21:59:55 -07:00
|
|
|
|
2013-05-10 07:41:02 -07:00
|
|
|
tools:
|
|
|
|
$(MAKE) -C tools
|
|
|
|
|
2013-04-30 11:20:14 -07:00
|
|
|
web: preparation config model
|
2013-04-13 21:59:55 -07:00
|
|
|
$(MAKE) -C web
|
2012-11-25 07:04:58 -08:00
|
|
|
|
2013-05-10 07:41:02 -07:00
|
|
|
.PHONY: advice binary build clean config documentation format model package preparation run search_index source_path test tools
|