added EXTRA_* files to get `make dist' doing the right thing.

This commit is contained in:
crs
2002-07-31 16:27:06 +00:00
parent 12f1cb58b9
commit 8c1f5f623b
15 changed files with 115 additions and 186 deletions

View File

@@ -2,6 +2,10 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
base.dsp \
$(NULL)
noinst_LIBRARIES = libbase.a
libbase_a_SOURCES = \
CFunctionJob.cpp \

View File

@@ -2,6 +2,12 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
client.dsp \
CMSWindowsSecondaryScreen.cpp \
CMSWindowsSecondaryScreen.h \
$(NULL)
noinst_LIBRARIES = libclient.a
libclient_a_SOURCES = \
CClient.cpp \

View File

@@ -2,6 +2,10 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
http.dsp \
$(NULL)
noinst_LIBRARIES = libhttp.a
libhttp_a_SOURCES = \
CHTTPProtocol.cpp \

View File

@@ -2,6 +2,10 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
io.dsp \
$(NULL)
noinst_LIBRARIES = libio.a
libio_a_SOURCES = \
CBufferedInputStream.cpp \

View File

@@ -2,6 +2,10 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
mt.dsp \
$(NULL)
noinst_LIBRARIES = libmt.a
libmt_a_SOURCES = \
CLock.cpp \

View File

@@ -2,6 +2,10 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
net.dsp \
$(NULL)
noinst_LIBRARIES = libnet.a
libnet_a_SOURCES = \
CNetwork.cpp \

View File

@@ -2,7 +2,29 @@
NULL =
DEPTH = ../..
# FIXME -- add CUnixPlatform.cpp as an unbuilt source
EXTRA_DIST = \
makehook.dsp \
platform.dsp \
synrgyhk.dsp \
CMSWindowsClipboard.cpp \
CMSWindowsClipboardAnyTextConverter.cpp \
CMSWindowsClipboardTextConverter.cpp \
CMSWindowsClipboardUTF16Converter.cpp \
CMSWindowsScreen.cpp \
CMSWindowsScreenSaver.cpp \
CSynergyHook.cpp \
CWin32Platform.cpp \
CMSWindowsClipboard.h \
CMSWindowsClipboardAnyTextConverter.h \
CMSWindowsClipboardTextConverter.h \
CMSWindowsClipboardUTF16Converter.h \
CMSWindowsScreen.h \
CMSWindowsScreenSaver.h \
CSynergyHook.h \
CWin32Platform.h \
IMSWindowsScreenEventHandler.h \
$(NULL)
noinst_LIBRARIES = libplatform.a
libplatform_a_SOURCES = \
CPlatform.cpp \
@@ -24,6 +46,9 @@ libplatform_a_SOURCES = \
CXWindowsUtil.h \
IPlatform.h \
$(NULL)
EXTRA_libplatform_a_SOURCES = \
CUnixPlatform.cpp \
$(NULL)
INCLUDES = \
-I$(DEPTH)/lib/base \
-I$(DEPTH)/lib/mt \

View File

@@ -2,6 +2,12 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
server.dsp \
CMSWindowsPrimaryScreen.cpp \
CMSWindowsPrimaryScreen.h \
$(NULL)
noinst_LIBRARIES = libserver.a
libserver_a_SOURCES = \
CClientProxy.cpp \

View File

@@ -2,37 +2,41 @@
NULL =
DEPTH = ../..
EXTRA_DIST = \
libsynergy.dsp \
$(NULL)
noinst_LIBRARIES = libsynergy.a
libsynergy_a_SOURCES = \
CInputPacketStream.cpp \
COutputPacketStream.cpp \
CProtocolUtil.cpp \
CClipboard.cpp \
XScreen.cpp \
XSynergy.cpp \
CClipboard.h \
CInputPacketStream.h \
COutputPacketStream.h \
CProtocolUtil.h \
ClipboardTypes.h \
IClient.h \
IClipboard.h \
IPrimaryScreenReceiver.h\
IScreen.h \
IScreenEventHandler.h \
IScreenReceiver.h \
IScreenSaver.h \
IServer.h \
KeyTypes.h \
MouseTypes.h \
ProtocolTypes.h \
Version.h \
XScreen.h \
XSynergy.h \
libsynergy_a_SOURCES = \
CInputPacketStream.cpp \
COutputPacketStream.cpp \
CProtocolUtil.cpp \
CClipboard.cpp \
XScreen.cpp \
XSynergy.cpp \
CClipboard.h \
CInputPacketStream.h \
COutputPacketStream.h \
CProtocolUtil.h \
ClipboardTypes.h \
IClient.h \
IClipboard.h \
IPrimaryScreenReceiver.h \
IScreen.h \
IScreenEventHandler.h \
IScreenReceiver.h \
IScreenSaver.h \
IServer.h \
KeyTypes.h \
MouseTypes.h \
ProtocolTypes.h \
Version.h \
XScreen.h \
XSynergy.h \
$(NULL)
INCLUDES = \
-I$(DEPTH)/lib/base \
-I$(DEPTH)/lib/mt \
-I$(DEPTH)/lib/io \
-I$(DEPTH)/lib/net \
INCLUDES = \
-I$(DEPTH)/lib/base \
-I$(DEPTH)/lib/mt \
-I$(DEPTH)/lib/io \
-I$(DEPTH)/lib/net \
$(NULL)