Add build files for submodules

This commit is contained in:
Laramie Leavitt
2016-03-02 10:10:19 -08:00
parent 18b35c7ea9
commit d53f356dcd
4 changed files with 46 additions and 1 deletions

18
BUILD
View File

@ -28,4 +28,20 @@ go_binary(
deps = [
"@bare//:bare",
],
)
)
go_binary(
name ="subbare",
srcs = [ "subbare.go" ],
deps = [
"//submodule/src:bare",
],
)
go_binary(
name ="subremote",
srcs = [ "subremote.go" ],
deps = [
"//submodule/src/remote",
],
)