Thrift: move /lib/cpp code into /lib/cpp/src
Summary: Clean separation of src and buildfiles etc. is key
Reviewed By: aditya
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664719 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/Makefile b/lib/cpp/Makefile
index f77c493..15664fa 100644
--- a/lib/cpp/Makefile
+++ b/lib/cpp/Makefile
@@ -12,14 +12,14 @@
# Tools
LD = g++
-LDFL = -shared -Wall -I. -fPIC -Wl,-soname=libthrift.so
+LDFL = -shared -Wall -Isrc -fPIC -Wl,-soname=libthrift.so
# Source files
-SRCS = protocol/TBinaryProtocol.cc \
- transport/TBufferedTransport.cc \
- transport/TSocket.cc \
- transport/TServerSocket.cc \
- server/TSimpleServer.cc
+SRCS = src/protocol/TBinaryProtocol.cc \
+ src/transport/TBufferedTransport.cc \
+ src/transport/TSocket.cc \
+ src/transport/TServerSocket.cc \
+ src/server/TSimpleServer.cc
# Linked library
libthrift: