blob: 1779f4911ed7eac172de63475056e5cc837f7564 [file] [log] [blame]
Ubuntuc3ff4602017-06-20 00:13:13 +00001SUBDIRS = src
2dist_doc_DATA = README.md INSTALL.md
Shad Ansarif44d1a92017-06-21 20:12:44 +00003
4all: grpc-c
5
Shad Ansari8e5cb142017-06-21 23:02:45 +00006protobuf:
7 cd third_party/protobuf; ./autogen.sh; ./configure; make; sudo make install
8
9protobuf-c: protobuf
Shad Ansari49a08d12017-06-21 22:48:42 +000010 cd third_party/protobuf-c; ./autogen.sh; ./configure; make; sudo make install
11
Shad Ansari17f0e812017-06-21 22:22:27 +000012grpc:
13 cd third_party/grpc; git submodule update --init; make; sudo make install
14
Shad Ansari49a08d12017-06-21 22:48:42 +000015grpc-c: grpc protobuf-c
Shad Ansarif44d1a92017-06-21 20:12:44 +000016 cd third_party/grpc-c; autoreconf --install; git submodule update --init; ./configure
17 make -C third_party/grpc-c