prometheus/Makefile

95 lines
2.6 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.
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
advice:
2013-06-11 15:45:26 +00:00
$(GO) tool vet .
2013-03-26 11:33:48 +00:00
binary: build
2013-06-11 15:45:26 +00:00
$(GO) build -o prometheus $(BUILDFLAGS) .
2012-11-24 11:33:34 +00:00
build: preparation config model tools web
2012-11-24 11:33:34 +00:00
clean:
$(MAKE) -C build clean
$(MAKE) -C tools 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
config: preparation
$(MAKE) -C config
documentation: search_index
godoc -http=:6060 -index -index_files='search_index'
2012-11-24 11:33:34 +00:00
format:
2013-06-11 15:45:26 +00:00
find . -iname '*.go' | egrep -v "generated|\.(l|y)\.go" | xargs -n1 $(GOROOT)/bin/gofmt -w -s=true
build/cache/$(GOPKG):
curl -o $@ http://go.googlecode.com/files/$(GOPKG)
$(GOCC): build/cache/$(GOPKG)
tar -C build/root -xzf $<
touch $@
2012-11-24 11:33:34 +00:00
model: preparation
$(MAKE) -C model
package: binary
2013-05-23 14:54:21 +00:00
cp prometheus build/package/prometheus
rsync -av build/root/lib/ build/package/lib/
2013-06-11 15:45:26 +00:00
preparation: $(GOCC) source_path
$(MAKE) -C build
2013-06-05 12:05:42 +00:00
race_condition_binary: build
CGO_CFLAGS="-I$(PWD)/build/root/include" CGO_LDFLAGS="-L$(PWD)/build/root/lib" go build -race -o prometheus.race $(BUILDFLAGS) .
race_condition_run: race_condition_binary
./prometheus.race $(ARGUMENTS)
run: binary
./prometheus $(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 model preparation
$(MAKE) -C server
# 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-06-11 15:45:26 +00:00
$(GOENV) find . -maxdepth 1 -mindepth 1 -type d -and -not -path ./build -exec $(GOCC) test {}/... $(GO_TEST_FLAGS) \;
$(GO) test $(GO_TEST_FLAGS)
tools:
$(MAKE) -C tools
web: preparation config model
$(MAKE) -C web
2012-11-25 15:04:58 +00:00
2013-06-05 12:05:42 +00:00
.PHONY: advice binary build clean config documentation format model package preparation race_condition_binary race_condition_run run search_index source_path test tools