2002-08-02 19:57:46 +00:00
|
|
|
# synergy -- mouse and keyboard sharing utility
|
|
|
|
# Copyright (C) 2002 Chris Schoeneman
|
|
|
|
#
|
|
|
|
# This package is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# found in the file COPYING that should have accompanied this file.
|
|
|
|
#
|
|
|
|
# This package is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
2002-06-18 19:44:34 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
NULL =
|
2002-07-30 16:52:46 +00:00
|
|
|
DEPTH = ../..
|
2002-07-31 17:34:05 +00:00
|
|
|
VDEPTH = ./$(VPATH)/$(DEPTH)
|
2002-06-18 19:44:34 +00:00
|
|
|
|
2002-07-31 16:27:06 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
libsynergy.dsp \
|
|
|
|
$(NULL)
|
|
|
|
|
2002-07-31 16:57:26 +00:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
Makefile.in \
|
|
|
|
$(NULL)
|
|
|
|
|
2002-06-18 19:44:34 +00:00
|
|
|
noinst_LIBRARIES = libsynergy.a
|
2002-07-31 16:27:06 +00:00
|
|
|
libsynergy_a_SOURCES = \
|
2003-01-05 21:48:54 +00:00
|
|
|
CClipboard.cpp \
|
2002-07-31 16:27:06 +00:00
|
|
|
CInputPacketStream.cpp \
|
|
|
|
COutputPacketStream.cpp \
|
2003-01-05 21:48:54 +00:00
|
|
|
CPrimaryScreen.cpp \
|
2002-07-31 16:27:06 +00:00
|
|
|
CProtocolUtil.cpp \
|
2003-01-05 21:48:54 +00:00
|
|
|
CSecondaryScreen.cpp \
|
2002-07-31 16:27:06 +00:00
|
|
|
XScreen.cpp \
|
|
|
|
XSynergy.cpp \
|
|
|
|
CClipboard.h \
|
|
|
|
CInputPacketStream.h \
|
|
|
|
COutputPacketStream.h \
|
2003-01-05 21:48:54 +00:00
|
|
|
CPrimaryScreen.h \
|
2002-07-31 16:27:06 +00:00
|
|
|
CProtocolUtil.h \
|
2003-01-05 21:48:54 +00:00
|
|
|
CSecondaryScreen.h \
|
2002-07-31 16:27:06 +00:00
|
|
|
ClipboardTypes.h \
|
|
|
|
IClient.h \
|
|
|
|
IClipboard.h \
|
2003-01-05 21:48:54 +00:00
|
|
|
IPrimaryScreenFactory.h \
|
2002-07-31 16:27:06 +00:00
|
|
|
IPrimaryScreenReceiver.h \
|
|
|
|
IScreen.h \
|
|
|
|
IScreenEventHandler.h \
|
|
|
|
IScreenReceiver.h \
|
|
|
|
IScreenSaver.h \
|
2003-01-05 21:48:54 +00:00
|
|
|
ISecondaryScreenFactory.h \
|
2002-07-31 16:27:06 +00:00
|
|
|
IServer.h \
|
|
|
|
KeyTypes.h \
|
|
|
|
MouseTypes.h \
|
2002-12-23 13:55:21 +00:00
|
|
|
OptionTypes.h \
|
2002-07-31 16:27:06 +00:00
|
|
|
ProtocolTypes.h \
|
|
|
|
XScreen.h \
|
|
|
|
XSynergy.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|
2002-07-31 16:27:06 +00:00
|
|
|
INCLUDES = \
|
2003-01-04 22:01:32 +00:00
|
|
|
-I$(VDEPTH)/lib/common \
|
|
|
|
-I$(VDEPTH)/lib/arch \
|
2002-07-31 17:34:05 +00:00
|
|
|
-I$(VDEPTH)/lib/base \
|
|
|
|
-I$(VDEPTH)/lib/mt \
|
|
|
|
-I$(VDEPTH)/lib/io \
|
|
|
|
-I$(VDEPTH)/lib/net \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|