-- cleaning up some Makefile issues

Reviewed By: jwang

Test Plan: compiled


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665243 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Aditya Agarwal 2007-08-31 08:03:05 +00:00
parent 8b6c2ebf42
commit 000b111922

View File

@ -12,7 +12,6 @@ libthrift_sources = src/Thrift.cpp \
src/concurrency/PosixThreadFactory.cpp \
src/concurrency/ThreadManager.cpp \
src/concurrency/TimerManager.cpp \
src/processor/PeekProcessor.cpp \
src/protocol/TBinaryProtocol.cpp \
src/protocol/TDebugProtocol.cpp \
src/transport/TTransportException.cpp \
@ -24,7 +23,9 @@ libthrift_sources = src/Thrift.cpp \
src/transport/TTransportUtils.cpp \
src/server/TSimpleServer.cpp \
src/server/TThreadPoolServer.cpp \
src/server/TThreadedServer.cpp
src/server/TThreadedServer.cpp \
src/processor/PeekProcessor.cpp
libthriftnb_sources = src/server/TNonblockingServer.cpp
@ -84,6 +85,11 @@ include_server_HEADERS = \
src/server/TThreadedServer.h \
src/server/TNonblockingServer.h
include_processordir = $(include_thriftdir)/processor
include_processor_HEADERS = \
src/processor/PeekProcessor.h \
src/processor/StatsProcessor.h
bin_PROGRAMS = concurrency_test
concurrency_test_SOURCES = src/concurrency/test/Tests.cpp \