2003-01-04 22:01:32 +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.
|
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
NULL =
|
|
|
|
|
2004-04-11 14:58:08 +00:00
|
|
|
COMMON_SOURCE_FILES = \
|
2003-01-04 22:01:32 +00:00
|
|
|
CArch.cpp \
|
2004-04-11 14:58:08 +00:00
|
|
|
CArchDaemonNone.cpp \
|
|
|
|
CArchDaemonNone.h \
|
2003-01-04 22:01:32 +00:00
|
|
|
XArch.cpp \
|
|
|
|
CArch.h \
|
|
|
|
IArchConsole.h \
|
|
|
|
IArchDaemon.h \
|
|
|
|
IArchFile.h \
|
|
|
|
IArchLog.h \
|
|
|
|
IArchMultithread.h \
|
|
|
|
IArchNetwork.h \
|
|
|
|
IArchSleep.h \
|
|
|
|
IArchString.h \
|
2003-03-12 22:34:07 +00:00
|
|
|
IArchTaskBar.h \
|
|
|
|
IArchTaskBarReceiver.h \
|
2003-01-04 22:01:32 +00:00
|
|
|
IArchTime.h \
|
|
|
|
XArch.h \
|
|
|
|
$(NULL)
|
2004-04-11 14:58:08 +00:00
|
|
|
UNIX_SOURCE_FILES = \
|
2003-01-04 22:01:32 +00:00
|
|
|
CArchConsoleUnix.cpp \
|
|
|
|
CArchDaemonUnix.cpp \
|
|
|
|
CArchFileUnix.cpp \
|
|
|
|
CArchLogUnix.cpp \
|
|
|
|
CArchMultithreadPosix.cpp \
|
|
|
|
CArchNetworkBSD.cpp \
|
|
|
|
CArchSleepUnix.cpp \
|
|
|
|
CArchStringUnix.cpp \
|
2003-03-12 22:34:07 +00:00
|
|
|
CArchTaskBarXWindows.cpp \
|
2003-01-04 22:01:32 +00:00
|
|
|
CArchTimeUnix.cpp \
|
|
|
|
XArchUnix.cpp \
|
|
|
|
CArchConsoleUnix.h \
|
|
|
|
CArchDaemonUnix.h \
|
|
|
|
CArchFileUnix.h \
|
|
|
|
CArchLogUnix.h \
|
|
|
|
CArchMultithreadPosix.h \
|
|
|
|
CArchNetworkBSD.h \
|
|
|
|
CArchSleepUnix.h \
|
|
|
|
CArchStringUnix.h \
|
2003-03-12 22:34:07 +00:00
|
|
|
CArchTaskBarXWindows.h \
|
2003-01-04 22:01:32 +00:00
|
|
|
CArchTimeUnix.h \
|
|
|
|
XArchUnix.h \
|
|
|
|
$(NULL)
|
2004-04-11 14:58:08 +00:00
|
|
|
WIN32_SOURCE_FILES = \
|
|
|
|
CArchConsoleWindows.cpp \
|
|
|
|
CArchDaemonWindows.cpp \
|
|
|
|
CArchFileWindows.cpp \
|
|
|
|
CArchLogWindows.cpp \
|
|
|
|
CArchMiscWindows.cpp \
|
|
|
|
CArchMultithreadWindows.cpp \
|
|
|
|
CArchNetworkWinsock.cpp \
|
|
|
|
CArchSleepWindows.cpp \
|
|
|
|
CArchStringWindows.cpp \
|
|
|
|
CArchTaskBarWindows.cpp \
|
|
|
|
CArchTimeWindows.cpp \
|
|
|
|
XArchWindows.cpp \
|
|
|
|
CArchConsoleWindows.h \
|
|
|
|
CArchDaemonWindows.h \
|
|
|
|
CArchFileWindows.h \
|
|
|
|
CArchLogWindows.h \
|
|
|
|
CArchMiscWindows.h \
|
|
|
|
CArchMultithreadWindows.h \
|
|
|
|
CArchNetworkWinsock.h \
|
|
|
|
CArchSleepWindows.h \
|
|
|
|
CArchStringWindows.h \
|
|
|
|
CArchTaskBarWindows.h \
|
|
|
|
CArchTimeWindows.h \
|
|
|
|
XArchWindows.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
arch.dsp \
|
|
|
|
CMultibyte.cpp \
|
|
|
|
CMultibyteEmu.cpp \
|
|
|
|
CMultibyteOS.cpp \
|
|
|
|
vsnprintf.cpp \
|
|
|
|
$(UNIX_SOURCE_FILES) \
|
|
|
|
$(WIN32_SOURCE_FILES) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
Makefile.in \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
noinst_LIBRARIES = libarch.a
|
|
|
|
if UNIX
|
|
|
|
libarch_a_SOURCES = \
|
|
|
|
$(COMMON_SOURCE_FILES) \
|
|
|
|
$(UNIX_SOURCE_FILES) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
if WIN32
|
|
|
|
libarch_a_SOURCES = \
|
|
|
|
$(COMMON_SOURCE_FILES) \
|
|
|
|
$(WIN32_SOURCE_FILES) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
2003-01-04 22:01:32 +00:00
|
|
|
INCLUDES = \
|
2004-04-04 12:12:32 +00:00
|
|
|
-I$(top_srcdir)/lib/common \
|
2003-01-04 22:01:32 +00:00
|
|
|
$(NULL)
|