Rename test files to .cpp instead of .cc
authorMark Slee <mcslee@apache.org>
Thu, 12 Oct 2006 04:04:11 +0000 (04:04 +0000)
committerMark Slee <mcslee@apache.org>
Thu, 12 Oct 2006 04:04:11 +0000 (04:04 +0000)
Reviewed By: aditya

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664830 13f79535-47bb-0310-9956-ffa450edef68

test/cpp/Makefile.thrift
test/cpp/src/TestClient.cpp [moved from test/cpp/src/TestClient.cc with 100% similarity]
test/cpp/src/TestServer.cpp [moved from test/cpp/src/TestServer.cc with 100% similarity]

index 4fdc4a8..d8ef54d 100644 (file)
@@ -42,16 +42,16 @@ stubs: ../ThriftTest.thrift
        $(THRIFT) --cpp ../ThriftTest.thrift
 
 server-debug: stubs
-       g++ -o TestServer $(DCFL) src/TestServer.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc 
+       g++ -o TestServer $(DCFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp 
 
 client-debug: stubs
-       g++ -o TestClient $(DCFL) src/TestClient.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc
+       g++ -o TestClient $(DCFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp
 
 server: stubs
-       g++ -o TestServer $(CFL) src/TestServer.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc
+       g++ -o TestServer $(CFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp
 
 client: stubs
-       g++ -o TestClient $(CFL) src/TestClient.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc
+       g++ -o TestClient $(CFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp
 
 clean:
        rm -fr TestServer TestClient gen-cpp