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-07-30 16:52:46 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
NULL =
|
|
|
|
DEPTH = ../..
|
2002-07-31 17:34:05 +00:00
|
|
|
VDEPTH = ./$(VPATH)/$(DEPTH)
|
2002-07-30 16:52:46 +00:00
|
|
|
|
2003-03-12 22:34:07 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
CMSWindowsServerTaskBarReceiver.cpp \
|
|
|
|
CMSWindowsServerTaskBarReceiver.h \
|
|
|
|
resource.h \
|
|
|
|
synergys.ico \
|
|
|
|
synergys.dsp \
|
|
|
|
synergys.rc \
|
|
|
|
tb_error.ico \
|
|
|
|
tb_idle.ico \
|
|
|
|
tb_run.ico \
|
|
|
|
tb_wait.ico \
|
2002-07-31 16:57:26 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2003-03-12 22:34:07 +00:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
Makefile.in \
|
2002-07-31 16:27:06 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2002-08-11 22:43:07 +00:00
|
|
|
bin_PROGRAMS = synergys
|
|
|
|
synergys_SOURCES = \
|
2003-03-12 22:34:07 +00:00
|
|
|
CServerTaskBarReceiver.cpp \
|
|
|
|
CServerTaskBarReceiver.h \
|
|
|
|
CXWindowsServerTaskBarReceiver.cpp \
|
|
|
|
CXWindowsServerTaskBarReceiver.h \
|
2002-08-11 22:43:07 +00:00
|
|
|
synergys.cpp \
|
2002-07-30 16:52:46 +00:00
|
|
|
$(NULL)
|
2002-08-11 22:43:07 +00:00
|
|
|
synergys_LDADD = \
|
2002-07-30 16:52:46 +00:00
|
|
|
$(DEPTH)/lib/server/libserver.a \
|
|
|
|
$(DEPTH)/lib/platform/libplatform.a \
|
|
|
|
$(DEPTH)/lib/synergy/libsynergy.a \
|
|
|
|
$(DEPTH)/lib/net/libnet.a \
|
|
|
|
$(DEPTH)/lib/io/libio.a \
|
|
|
|
$(DEPTH)/lib/mt/libmt.a \
|
|
|
|
$(DEPTH)/lib/base/libbase.a \
|
2003-01-04 22:01:32 +00:00
|
|
|
$(DEPTH)/lib/arch/libarch.a \
|
2002-07-30 16:52:46 +00:00
|
|
|
$(X_LIBS) \
|
|
|
|
$(X_PRE_LIBS) \
|
|
|
|
-lXtst \
|
|
|
|
-lXext \
|
|
|
|
-lX11 \
|
|
|
|
$(X_EXTRA_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
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 \
|
|
|
|
-I$(VDEPTH)/lib/synergy \
|
|
|
|
-I$(VDEPTH)/lib/platform \
|
|
|
|
-I$(VDEPTH)/lib/server \
|
2002-07-30 16:52:46 +00:00
|
|
|
$(NULL)
|