commit | 49a08d1a4c16bf3eafb3c087eddfc20488e5d6af | [log] [tgz] |
---|---|---|
author | Shad Ansari <shad@onlab.us> | Wed Jun 21 22:48:42 2017 +0000 |
committer | Shad Ansari <shad@onlab.us> | Wed Jun 21 22:48:42 2017 +0000 |
tree | 945755f34f6dcb434cf5f7bb2d4b43629411a393 | |
parent | 3ffbddd9dcd1f6ca062405fdbdd467873e910181 [diff] |
add build for protobuf-c
diff --git a/Makefile.am b/Makefile.am index 43ca5b4..d39bda2 100644 --- a/Makefile.am +++ b/Makefile.am
@@ -3,9 +3,12 @@ all: grpc-c +protobuf-c: + cd third_party/protobuf-c; ./autogen.sh; ./configure; make; sudo make install + grpc: cd third_party/grpc; git submodule update --init; make; sudo make install -grpc-c: grpc +grpc-c: grpc protobuf-c cd third_party/grpc-c; autoreconf --install; git submodule update --init; ./configure make -C third_party/grpc-c