Make examples buildable from make
This commit is contained in:
parent
316b327693
commit
5a2ed875a6
8
Makefile
8
Makefile
|
@ -44,7 +44,7 @@ BENCHMARK_FILTER ?= .
|
||||||
FULL_GOPATH = $(GOPATH)/src/github.com/prometheus/client_golang
|
FULL_GOPATH = $(GOPATH)/src/github.com/prometheus/client_golang
|
||||||
FULL_GOPATH_BASE = $(GOPATH)/src/github.com/prometheus
|
FULL_GOPATH_BASE = $(GOPATH)/src/github.com/prometheus
|
||||||
|
|
||||||
MAKE_ARTIFACTS = search_index $(BUILD_PATH)
|
MAKE_ARTIFACTS = search_index $(BUILD_PATH) example_random example_simple
|
||||||
|
|
||||||
all: test
|
all: test
|
||||||
|
|
||||||
|
@ -70,6 +70,12 @@ build: source_path dependencies
|
||||||
dependencies: source_path $(GOCC)
|
dependencies: source_path $(GOCC)
|
||||||
$(GO) get -d -t ./...
|
$(GO) get -d -t ./...
|
||||||
|
|
||||||
|
example_random: source_path dependencies examples/random/main.go
|
||||||
|
$(GO) build -o example_random examples/random/main.go
|
||||||
|
|
||||||
|
example_simple: source_path dependencies examples/simple/main.go
|
||||||
|
$(GO) build -o example_simple examples/simple/main.go
|
||||||
|
|
||||||
test: build
|
test: build
|
||||||
$(GO) test ./...
|
$(GO) test ./...
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue