2013-02-07 02:49:04 -08:00
|
|
|
# Copyright 2013 Prometheus Team
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# 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-11 13:59:27 -07:00
|
|
|
all: generated/config.pb.go
|
2013-01-07 14:24:26 -08:00
|
|
|
|
2013-04-30 11:20:14 -07:00
|
|
|
SUFFIXES:
|
2013-01-07 14:24:26 -08:00
|
|
|
|
2013-04-30 11:20:14 -07:00
|
|
|
include ../Makefile.INCLUDE
|
|
|
|
|
2013-05-08 12:15:47 -07:00
|
|
|
generated/config.pb.go: config.proto
|
2014-11-17 10:20:39 -08:00
|
|
|
$(GO_GET) code.google.com/p/goprotobuf/protoc-gen-go
|
2013-06-13 06:17:03 -07:00
|
|
|
$(PROTOC) --proto_path=$(PREFIX)/include:. --go_out=generated/ config.proto
|