1af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# Go support for Protocol Buffers - Google's data interchange format
2af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#
3ee6e9c5fb8e8709f09d6ac41c633325c2d8ffacfDavid Symonds# Copyright 2010 The Go Authors.  All rights reserved.
4558f13f1d76778ada7ffed439234b99b10977768David Symonds# https://github.com/golang/protobuf
5af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#
6af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# Redistribution and use in source and binary forms, with or without
7af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# modification, are permitted provided that the following conditions are
8af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# met:
9af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#
10af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#     * Redistributions of source code must retain the above copyright
11af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# notice, this list of conditions and the following disclaimer.
12af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#     * Redistributions in binary form must reproduce the above
13af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# copyright notice, this list of conditions and the following disclaimer
14af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# in the documentation and/or other materials provided with the
15af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# distribution.
16af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#     * Neither the name of Google Inc. nor the names of its
17af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# contributors may be used to endorse or promote products derived from
18af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# this software without specific prior written permission.
19af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike#
20af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike
326cd49acd413c5c8ff5e0a65be3678c2cc6db1228Rob Pikeinclude $(GOROOT)/src/Make.inc
33af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike
34558f13f1d76778ada7ffed439234b99b10977768David SymondsTARG=github.com/golang/protobuf/compiler/generator
35af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob PikeGOFILES=\
36af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike	generator.go\
37af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike
38af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob PikeDEPS=../descriptor ../plugin ../../proto
39af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pike
40af82b4e96ef76f8a4fc1801a69d13d636ecffc3dRob Pikeinclude $(GOROOT)/src/Make.pkg
41