2013-02-07 10:38:01 +00:00
|
|
|
# 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
|
2013-02-07 10:38:01 +00:00
|
|
|
#
|
2012-11-26 19:11:34 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-02-07 10:38:01 +00:00
|
|
|
#
|
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
|
|
|
|
2013-04-14 04:59:55 +00:00
|
|
|
include Makefile.INCLUDE
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-05-07 13:48:33 +00:00
|
|
|
all: binary test
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-08-05 07:25:47 +00:00
|
|
|
$(GOCC): $(BUILD_PATH)/cache/$(GOPKG) $(FULL_GOPATH)
|
2013-06-25 12:02:27 +00:00
|
|
|
tar -C $(BUILD_PATH)/root -xzf $<
|
2013-06-13 13:17:03 +00:00
|
|
|
touch $@
|
|
|
|
|
2013-04-14 04:59:55 +00:00
|
|
|
advice:
|
2013-06-11 15:45:26 +00:00
|
|
|
$(GO) tool vet .
|
2013-03-26 11:33:48 +00:00
|
|
|
|
|
|
|
binary: build
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
build: config dependencies model preparation tools web
|
2013-06-13 14:24:21 +00:00
|
|
|
$(GO) build -o prometheus $(BUILDFLAGS) .
|
2013-06-25 12:02:27 +00:00
|
|
|
cp prometheus $(BUILD_PATH)/package/prometheus
|
|
|
|
rsync -av --delete $(BUILD_PATH)/root/lib/ $(BUILD_PATH)/package/lib/
|
2013-06-13 13:17:03 +00:00
|
|
|
|
2013-08-05 12:40:24 +00:00
|
|
|
docker: build
|
|
|
|
docker build -t prometheus:$(REV) .
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
$(BUILD_PATH)/cache/$(GOPKG):
|
2013-06-13 13:17:03 +00:00
|
|
|
curl -o $@ http://go.googlecode.com/files/$(GOPKG)
|
2013-04-14 04:59:55 +00:00
|
|
|
|
2012-11-24 11:33:34 +00:00
|
|
|
clean:
|
2013-06-25 12:02:27 +00:00
|
|
|
$(MAKE) -C $(BUILD_PATH) clean
|
2013-05-10 14:41:02 +00:00
|
|
|
$(MAKE) -C tools clean
|
2013-03-21 17:29:33 +00:00
|
|
|
$(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 '{}' ';'
|
2012-11-28 19:22:49 +00:00
|
|
|
-find . -type f -iname '.#*' -exec rm '{}' ';'
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
config: dependencies preparation
|
2013-04-30 18:20:14 +00:00
|
|
|
$(MAKE) -C config
|
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
dependencies: preparation
|
|
|
|
$(GO) get -d
|
|
|
|
|
2013-04-14 04:59:55 +00:00
|
|
|
documentation: search_index
|
|
|
|
godoc -http=:6060 -index -index_files='search_index'
|
|
|
|
|
2012-11-24 11:33:34 +00:00
|
|
|
format:
|
2013-06-25 12:02:27 +00:00
|
|
|
find . -iname '*.go' | egrep -v "^\./\.build|./generated|\.(l|y)\.go" | xargs -n1 $(GOFMT) -w -s=true
|
2013-06-11 15:45:26 +00:00
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
model: dependencies preparation
|
2013-04-14 04:59:55 +00:00
|
|
|
$(MAKE) -C model
|
|
|
|
|
2013-08-05 07:25:47 +00:00
|
|
|
preparation: $(GOCC) $(FULL_GOPATH)
|
2013-06-25 12:02:27 +00:00
|
|
|
$(MAKE) -C $(BUILD_PATH)
|
2013-04-14 04:59:55 +00:00
|
|
|
|
2013-06-05 12:05:42 +00:00
|
|
|
race_condition_binary: build
|
2013-06-25 12:02:27 +00:00
|
|
|
CGO_CFLAGS="-I$(BUILD_PATH)/root/include" CGO_LDFLAGS="-L$(BUILD_PATH)/root/lib" $(GO) build -race -o prometheus.race $(BUILDFLAGS) .
|
2013-06-05 12:05:42 +00:00
|
|
|
|
|
|
|
race_condition_run: race_condition_binary
|
|
|
|
./prometheus.race $(ARGUMENTS)
|
|
|
|
|
2013-04-14 04:59:55 +00:00
|
|
|
run: binary
|
2013-05-05 17:32:04 +00:00
|
|
|
./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'
|
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
server: config dependencies model preparation
|
2013-05-05 17:32:04 +00:00
|
|
|
$(MAKE) -C server
|
|
|
|
|
2013-08-05 07:25:47 +00:00
|
|
|
# $(FULL_GOPATH) is responsible for ensuring that the builder has not done anything
|
2013-04-14 04:59:55 +00:00
|
|
|
# stupid like working on Prometheus outside of ${GOPATH}.
|
2013-08-05 07:25:47 +00:00
|
|
|
$(FULL_GOPATH):
|
2013-04-14 04:59:55 +00:00
|
|
|
-[ -d "$(FULL_GOPATH)" ] || { mkdir -vp $(FULL_GOPATH_BASE) ; ln -s "$(PWD)" "$(FULL_GOPATH)" ; }
|
|
|
|
[ -d "$(FULL_GOPATH)" ]
|
|
|
|
|
|
|
|
test: build
|
2013-08-03 16:46:02 +00:00
|
|
|
$(GO) test $(GO_TEST_FLAGS) ./...
|
2013-04-14 04:59:55 +00:00
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
tools: dependencies preparation
|
2013-05-10 14:41:02 +00:00
|
|
|
$(MAKE) -C tools
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
update:
|
|
|
|
$(GO) get -d
|
|
|
|
|
2013-06-13 13:17:03 +00:00
|
|
|
web: config dependencies model preparation
|
2013-04-14 04:59:55 +00:00
|
|
|
$(MAKE) -C web
|
2012-11-25 15:04:58 +00:00
|
|
|
|
2013-08-05 07:25:47 +00:00
|
|
|
.PHONY: advice binary build clean config dependencies documentation format model package preparation race_condition_binary race_condition_run run search_index test tools update
|