1
0
Fork 0
mirror of https://github.com/unclechu/gRPC-haskell.git synced 2025-03-22 21:55:14 +01:00
gRPC-haskell/examples/echo/echo-cpp/Makefile

17 lines
408 B
Makefile
Raw Normal View History

CXX = clang++
CXXFLAGS += -std=c++11
CPPFLAGS += -I/usr/local/include -pthread
LDFLAGS += -L/usr/local/lib -lgrpc++_unsecure -lgrpc -lprotobuf -lpthread -ldl
.phony: all
all:
@echo "TODO: Update this code to use the new echo.proto"
@exit 1
echo-server: echo.pb.o echo.grpc.pb.o echo-server.o
clang++ $^ $(LDFLAGS) -o $@
echo-client: echo.pb.o echo.grpc.pb.o echo-client.o
clang++ $^ $(LDFLAGS) -o $@