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
|
|
|
|
#
|
|
|
|
# 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-05-08 19:15:47 +00:00
|
|
|
all: generated/data.pb.go generated/descriptor.blob
|
2013-04-24 14:59:40 +00:00
|
|
|
|
|
|
|
SUFFIXES:
|
|
|
|
|
|
|
|
include ../Makefile.INCLUDE
|
2013-03-21 17:29:33 +00:00
|
|
|
|
2013-05-08 19:15:47 +00:00
|
|
|
# In order to build the generated targets in this directory, run the
|
|
|
|
# following:
|
|
|
|
#
|
2013-06-26 14:09:37 +00:00
|
|
|
# make -C .build goprotobuf-protoc-gen-go-stamp
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2013-05-08 18:39:59 +00:00
|
|
|
generated/data.pb.go: data.proto
|
2013-06-26 14:09:37 +00:00
|
|
|
$(MAKE) -C ../.build goprotobuf-protoc-gen-go-stamp
|
2013-05-08 18:39:59 +00:00
|
|
|
$(PROTOC) --proto_path=$(PREFIX)/include:. --include_imports --go_out=generated/ --descriptor_set_out=generated/descriptor.blob data.proto
|
2013-03-21 17:29:33 +00:00
|
|
|
|
2013-05-08 19:15:47 +00:00
|
|
|
generated/descriptor.blob: data.proto
|
2013-06-26 14:09:37 +00:00
|
|
|
$(MAKE) -C ../.build goprotobuf-protoc-gen-go-stamp
|
2013-05-08 18:39:59 +00:00
|
|
|
$(PROTOC) --proto_path=$(PREFIX)/include:. --include_imports --go_out=generated/ --descriptor_set_out=generated/descriptor.blob data.proto
|