Created
October 20, 2011 18:27
-
-
Save kylelemons/1301885 to your computer and use it in GitHub Desktop.
Revisions
-
kylelemons revised this gist
Oct 20, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ include $(GOROOT)/src/Make.inc PROTOFILES=$(wildcard *.proto) GOPROTOFILES=$(patsubst %.proto,%.pb.go,$(PROTOFILES)) TARG=protopackage GOFILES=\ $(GOPROTOFILES)\ -
kylelemons created this gist
Oct 20, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ include $(GOROOT)/src/Make.inc PROTOFILES=$(wildcard *.proto) GOPROTOFILES=$(patsubst %.proto,%.pb.go,$(PROTOFILES)) TARG=platforms/mtp/proto GOFILES=\ $(GOPROTOFILES)\ CLEANFILES+=$(GOPROTOFILES) include $(GOROOT)/src/Make.pkg $(GOPROTOFILES) : $(PROTOFILES) protoc --go_out=. $^