added header files to _SOURCES.

This commit is contained in:
crs 2002-06-22 17:31:24 +00:00
parent 6c6afcc8cb
commit 4e37691a9c
8 changed files with 70 additions and 11 deletions

View File

@ -3,10 +3,12 @@ NULL =
DEPTH = ..
bin_PROGRAMS = synergy
synergy_SOURCES = \
synergy_SOURCES = \
CXWindowsSecondaryScreen.cpp \
CClient.cpp \
client.cpp \
CClient.cpp \
client.cpp \
CClient.h \
CXWindowsSecondaryScreen.h \
$(NULL)
synergy_LDADD = \
$(DEPTH)/platform/libplatform.a \

View File

@ -6,6 +6,8 @@ noinst_LIBRARIES = libhttp.a
libhttp_a_SOURCES = \
CHTTPProtocol.cpp \
XHTTP.cpp \
CHTTPProtocol.h \
XHTTP.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \

View File

@ -10,6 +10,14 @@ libio_a_SOURCES = \
COutputStreamFilter.cpp \
CStreamBuffer.cpp \
XIO.cpp \
CBufferedInputStream.h \
CBufferedOutputStream.h \
CInputStreamFilter.h \
COutputStreamFilter.h \
CStreamBuffer.h \
IInputStream.h \
IOutputStream.h \
XIO.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \

View File

@ -10,6 +10,13 @@ libmt_a_SOURCES = \
CThread.cpp \
CThreadRep.cpp \
CTimerThread.cpp \
CCondVar.h \
CLock.h \
CMutex.h \
CThread.h \
CThreadRep.h \
CTimerThread.h \
XThread.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \

View File

@ -10,6 +10,15 @@ libnet_a_SOURCES = \
CTCPListenSocket.cpp \
XNetwork.cpp \
XSocket.cpp \
CNetwork.h \
CNetworkAddress.h \
CTCPListenSocket.h \
CTCPSocket.h \
IDataSocket.h \
IListenSocket.h \
ISocket.h \
XNetwork.h \
XSocket.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \

View File

@ -2,12 +2,19 @@
NULL =
DEPTH = ..
# FIXME -- add CUnixPlatform.cpp as an unbuilt source
noinst_LIBRARIES = libplatform.a
libplatform_a_SOURCES = \
CPlatform.cpp \
CXWindowsClipboard.cpp \
CXWindowsScreen.cpp \
CXWindowsUtil.cpp \
CPlatform.h \
CUnixPlatform.h \
CXWindowsClipboard.h \
CXWindowsScreen.h \
CXWindowsUtil.h \
IPlatform.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \

View File

@ -3,14 +3,21 @@ NULL =
DEPTH = ..
bin_PROGRAMS = synergyd
synergyd_SOURCES = \
CConfig.cpp \
CServerProtocol.cpp \
CServerProtocol1_0.cpp \
CXWindowsPrimaryScreen.cpp \
CServer.cpp \
CHTTPServer.cpp \
server.cpp \
synergyd_SOURCES = \
CConfig.cpp \
CServerProtocol.cpp \
CServerProtocol1_0.cpp \
CXWindowsPrimaryScreen.cpp \
CServer.cpp \
CHTTPServer.cpp \
server.cpp \
CConfig.h \
CHTTPServer.h \
CServer.h \
CServerProtocol.h \
CServerProtocol1_0.h \
CSynergyHook.h \
CXWindowsPrimaryScreen.h \
$(NULL)
synergyd_LDADD = \
$(DEPTH)/platform/libplatform.a \

View File

@ -11,6 +11,23 @@ libsynergy_a_SOURCES = \
CTCPSocketFactory.cpp \
XScreen.cpp \
XSynergy.cpp \
CClipboard.h \
CInputPacketStream.h \
COutputPacketStream.h \
CProtocolUtil.h \
CTCPSocketFactory.h \
ClipboardTypes.h \
IClipboard.h \
IPrimaryScreen.h \
ISecondaryScreen.h \
IServerProtocol.h \
ISocketFactory.h \
KeyTypes.h \
MouseTypes.h \
ProtocolTypes.h \
Version.h \
XScreen.h \
XSynergy.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \