source: trunk/synergy/lib/server/Makefile.am@ 3886

Last change on this file since 3886 was 2749, checked in by bird, 19 years ago

synergy v1.3.1 sources (zip).

File size: 1.6 KB
Line 
1# synergy -- mouse and keyboard sharing utility
2# Copyright (C) 2002 Chris Schoeneman
3#
4# This package is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# found in the file COPYING that should have accompanied this file.
7#
8# This package is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12
13## Process this file with automake to produce Makefile.in
14NULL =
15
16EXTRA_DIST = \
17 server.dsp \
18 $(NULL)
19
20MAINTAINERCLEANFILES = \
21 Makefile.in \
22 $(NULL)
23
24noinst_LIBRARIES = libserver.a
25libserver_a_SOURCES = \
26 CBaseClientProxy.cpp \
27 CClientListener.cpp \
28 CClientProxy.cpp \
29 CClientProxy1_0.cpp \
30 CClientProxy1_1.cpp \
31 CClientProxy1_2.cpp \
32 CClientProxy1_3.cpp \
33 CClientProxyUnknown.cpp \
34 CConfig.cpp \
35 CInputFilter.cpp \
36 CPrimaryClient.cpp \
37 CServer.cpp \
38 CBaseClientProxy.h \
39 CClientListener.h \
40 CClientProxy.h \
41 CClientProxy1_0.h \
42 CClientProxy1_1.h \
43 CClientProxy1_2.h \
44 CClientProxy1_3.h \
45 CClientProxyUnknown.h \
46 CConfig.h \
47 CInputFilter.h \
48 CPrimaryClient.h \
49 CServer.h \
50 $(NULL)
51INCLUDES = \
52 -I$(top_srcdir)/lib/common \
53 -I$(top_srcdir)/lib/arch \
54 -I$(top_srcdir)/lib/base \
55 -I$(top_srcdir)/lib/mt \
56 -I$(top_srcdir)/lib/io \
57 -I$(top_srcdir)/lib/net \
58 -I$(top_srcdir)/lib/synergy \
59 -I$(top_srcdir)/lib/platform \
60 $(NULL)
Note: See TracBrowser for help on using the repository browser.