Ubuntu | c3ff460 | 2017-06-20 00:13:13 +0000 | [diff] [blame] | 1 | SUBDIRS = src |
| 2 | dist_doc_DATA = README.md INSTALL.md |
Shad Ansari | f44d1a9 | 2017-06-21 20:12:44 +0000 | [diff] [blame] | 3 | |
| 4 | all: grpc-c |
| 5 | |
Shad Ansari | 8e5cb14 | 2017-06-21 23:02:45 +0000 | [diff] [blame] | 6 | protobuf: |
| 7 | cd third_party/protobuf; ./autogen.sh; ./configure; make; sudo make install |
| 8 | |
| 9 | protobuf-c: protobuf |
Shad Ansari | 49a08d1 | 2017-06-21 22:48:42 +0000 | [diff] [blame] | 10 | cd third_party/protobuf-c; ./autogen.sh; ./configure; make; sudo make install |
| 11 | |
Shad Ansari | 17f0e81 | 2017-06-21 22:22:27 +0000 | [diff] [blame] | 12 | grpc: |
| 13 | cd third_party/grpc; git submodule update --init; make; sudo make install |
| 14 | |
Shad Ansari | 49a08d1 | 2017-06-21 22:48:42 +0000 | [diff] [blame] | 15 | grpc-c: grpc protobuf-c |
Shad Ansari | f44d1a9 | 2017-06-21 20:12:44 +0000 | [diff] [blame] | 16 | cd third_party/grpc-c; autoreconf --install; git submodule update --init; ./configure |
| 17 | make -C third_party/grpc-c |