aboutsummaryrefslogtreecommitdiffhomepage
path: root/cpp
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-04-13 09:34:53 -0700
committerGravatar Yang Gao <yangg@google.com>2015-04-13 09:34:53 -0700
commit8d7ce5317e6e41a728a169f77fb83fd5a1d143ad (patch)
tree9108a794d7f3b7c64f6b132a695ff44f4ae67411 /cpp
parent3f07f660ecd6f5224a6c3cb6ecfa92f2600d85cd (diff)
Fix makefile
Diffstat (limited to 'cpp')
-rw-r--r--cpp/helloworld/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/helloworld/Makefile b/cpp/helloworld/Makefile
index 3812689f31..a8d01a7e3e 100644
--- a/cpp/helloworld/Makefile
+++ b/cpp/helloworld/Makefile
@@ -43,10 +43,10 @@ vpath %.proto $(PROTOS_PATH)
all: system-check greeter_client greeter_server
-greeter_client: helloworld.grpc.pb.o helloworld.pb.o greeter_client.o
+greeter_client: helloworld.pb.o helloworld.grpc.pb.o greeter_client.o
$(CXX) $^ $(LDFLAGS) -o $@
-greeter_server: helloworld.pb.o greeter_server.o
+greeter_server: helloworld.pb.o helloworld.grpc.pb.o greeter_server.o
$(CXX) $^ $(LDFLAGS) -o $@
%.grpc.pb.cc: %.proto