added header files to _SOURCES.
This commit is contained in:
parent
6c6afcc8cb
commit
4e37691a9c
|
@ -3,10 +3,12 @@ NULL =
|
||||||
DEPTH = ..
|
DEPTH = ..
|
||||||
|
|
||||||
bin_PROGRAMS = synergy
|
bin_PROGRAMS = synergy
|
||||||
synergy_SOURCES = \
|
synergy_SOURCES = \
|
||||||
CXWindowsSecondaryScreen.cpp \
|
CXWindowsSecondaryScreen.cpp \
|
||||||
CClient.cpp \
|
CClient.cpp \
|
||||||
client.cpp \
|
client.cpp \
|
||||||
|
CClient.h \
|
||||||
|
CXWindowsSecondaryScreen.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
synergy_LDADD = \
|
synergy_LDADD = \
|
||||||
$(DEPTH)/platform/libplatform.a \
|
$(DEPTH)/platform/libplatform.a \
|
||||||
|
|
|
@ -6,6 +6,8 @@ noinst_LIBRARIES = libhttp.a
|
||||||
libhttp_a_SOURCES = \
|
libhttp_a_SOURCES = \
|
||||||
CHTTPProtocol.cpp \
|
CHTTPProtocol.cpp \
|
||||||
XHTTP.cpp \
|
XHTTP.cpp \
|
||||||
|
CHTTPProtocol.h \
|
||||||
|
XHTTP.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(DEPTH)/base \
|
-I$(DEPTH)/base \
|
||||||
|
|
|
@ -10,6 +10,14 @@ libio_a_SOURCES = \
|
||||||
COutputStreamFilter.cpp \
|
COutputStreamFilter.cpp \
|
||||||
CStreamBuffer.cpp \
|
CStreamBuffer.cpp \
|
||||||
XIO.cpp \
|
XIO.cpp \
|
||||||
|
CBufferedInputStream.h \
|
||||||
|
CBufferedOutputStream.h \
|
||||||
|
CInputStreamFilter.h \
|
||||||
|
COutputStreamFilter.h \
|
||||||
|
CStreamBuffer.h \
|
||||||
|
IInputStream.h \
|
||||||
|
IOutputStream.h \
|
||||||
|
XIO.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(DEPTH)/base \
|
-I$(DEPTH)/base \
|
||||||
|
|
|
@ -10,6 +10,13 @@ libmt_a_SOURCES = \
|
||||||
CThread.cpp \
|
CThread.cpp \
|
||||||
CThreadRep.cpp \
|
CThreadRep.cpp \
|
||||||
CTimerThread.cpp \
|
CTimerThread.cpp \
|
||||||
|
CCondVar.h \
|
||||||
|
CLock.h \
|
||||||
|
CMutex.h \
|
||||||
|
CThread.h \
|
||||||
|
CThreadRep.h \
|
||||||
|
CTimerThread.h \
|
||||||
|
XThread.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(DEPTH)/base \
|
-I$(DEPTH)/base \
|
||||||
|
|
|
@ -10,6 +10,15 @@ libnet_a_SOURCES = \
|
||||||
CTCPListenSocket.cpp \
|
CTCPListenSocket.cpp \
|
||||||
XNetwork.cpp \
|
XNetwork.cpp \
|
||||||
XSocket.cpp \
|
XSocket.cpp \
|
||||||
|
CNetwork.h \
|
||||||
|
CNetworkAddress.h \
|
||||||
|
CTCPListenSocket.h \
|
||||||
|
CTCPSocket.h \
|
||||||
|
IDataSocket.h \
|
||||||
|
IListenSocket.h \
|
||||||
|
ISocket.h \
|
||||||
|
XNetwork.h \
|
||||||
|
XSocket.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(DEPTH)/base \
|
-I$(DEPTH)/base \
|
||||||
|
|
|
@ -2,12 +2,19 @@
|
||||||
NULL =
|
NULL =
|
||||||
DEPTH = ..
|
DEPTH = ..
|
||||||
|
|
||||||
|
# FIXME -- add CUnixPlatform.cpp as an unbuilt source
|
||||||
noinst_LIBRARIES = libplatform.a
|
noinst_LIBRARIES = libplatform.a
|
||||||
libplatform_a_SOURCES = \
|
libplatform_a_SOURCES = \
|
||||||
CPlatform.cpp \
|
CPlatform.cpp \
|
||||||
CXWindowsClipboard.cpp \
|
CXWindowsClipboard.cpp \
|
||||||
CXWindowsScreen.cpp \
|
CXWindowsScreen.cpp \
|
||||||
CXWindowsUtil.cpp \
|
CXWindowsUtil.cpp \
|
||||||
|
CPlatform.h \
|
||||||
|
CUnixPlatform.h \
|
||||||
|
CXWindowsClipboard.h \
|
||||||
|
CXWindowsScreen.h \
|
||||||
|
CXWindowsUtil.h \
|
||||||
|
IPlatform.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(DEPTH)/base \
|
-I$(DEPTH)/base \
|
||||||
|
|
|
@ -3,14 +3,21 @@ NULL =
|
||||||
DEPTH = ..
|
DEPTH = ..
|
||||||
|
|
||||||
bin_PROGRAMS = synergyd
|
bin_PROGRAMS = synergyd
|
||||||
synergyd_SOURCES = \
|
synergyd_SOURCES = \
|
||||||
CConfig.cpp \
|
CConfig.cpp \
|
||||||
CServerProtocol.cpp \
|
CServerProtocol.cpp \
|
||||||
CServerProtocol1_0.cpp \
|
CServerProtocol1_0.cpp \
|
||||||
CXWindowsPrimaryScreen.cpp \
|
CXWindowsPrimaryScreen.cpp \
|
||||||
CServer.cpp \
|
CServer.cpp \
|
||||||
CHTTPServer.cpp \
|
CHTTPServer.cpp \
|
||||||
server.cpp \
|
server.cpp \
|
||||||
|
CConfig.h \
|
||||||
|
CHTTPServer.h \
|
||||||
|
CServer.h \
|
||||||
|
CServerProtocol.h \
|
||||||
|
CServerProtocol1_0.h \
|
||||||
|
CSynergyHook.h \
|
||||||
|
CXWindowsPrimaryScreen.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
synergyd_LDADD = \
|
synergyd_LDADD = \
|
||||||
$(DEPTH)/platform/libplatform.a \
|
$(DEPTH)/platform/libplatform.a \
|
||||||
|
|
|
@ -11,6 +11,23 @@ libsynergy_a_SOURCES = \
|
||||||
CTCPSocketFactory.cpp \
|
CTCPSocketFactory.cpp \
|
||||||
XScreen.cpp \
|
XScreen.cpp \
|
||||||
XSynergy.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)
|
$(NULL)
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(DEPTH)/base \
|
-I$(DEPTH)/base \
|
||||||
|
|
Loading…
Reference in New Issue