LEFT | RIGHT |
(no file at all) | |
1 # Go support for Protocol Buffers - Google's data interchange format | 1 # Go support for Protocol Buffers - Google's data interchange format |
2 # | 2 # |
3 # Copyright 2010 Google Inc. All rights reserved. | 3 # Copyright 2010 The Go Authors. All rights reserved. |
4 # http://code.google.com/p/goprotobuf/ | 4 # http://code.google.com/p/goprotobuf/ |
5 # | 5 # |
6 # Redistribution and use in source and binary forms, with or without | 6 # Redistribution and use in source and binary forms, with or without |
7 # modification, are permitted provided that the following conditions are | 7 # modification, are permitted provided that the following conditions are |
8 # met: | 8 # met: |
9 # | 9 # |
10 # * Redistributions of source code must retain the above copyright | 10 # * Redistributions of source code must retain the above copyright |
11 # notice, this list of conditions and the following disclaimer. | 11 # notice, this list of conditions and the following disclaimer. |
12 # * Redistributions in binary form must reproduce the above | 12 # * Redistributions in binary form must reproduce the above |
13 # copyright notice, this list of conditions and the following disclaimer | 13 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 17 matching lines...) Expand all Loading... |
31 | 31 |
32 include $(GOROOT)/src/Make.inc | 32 include $(GOROOT)/src/Make.inc |
33 | 33 |
34 TARG=code.google.com/p/goprotobuf/compiler/generator | 34 TARG=code.google.com/p/goprotobuf/compiler/generator |
35 GOFILES=\ | 35 GOFILES=\ |
36 generator.go\ | 36 generator.go\ |
37 | 37 |
38 DEPS=../descriptor ../plugin ../../proto | 38 DEPS=../descriptor ../plugin ../../proto |
39 | 39 |
40 include $(GOROOT)/src/Make.pkg | 40 include $(GOROOT)/src/Make.pkg |
LEFT | RIGHT |