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
|
---|
14 | NULL =
|
---|
15 |
|
---|
16 | MSWINDOWS_SOURCE_FILES = \
|
---|
17 | CAddScreen.cpp \
|
---|
18 | CAdvancedOptions.cpp \
|
---|
19 | CAutoStart.cpp \
|
---|
20 | CGlobalOptions.cpp \
|
---|
21 | CHotkeyOptions.cpp \
|
---|
22 | CInfo.cpp \
|
---|
23 | CScreensLinks.cpp \
|
---|
24 | LaunchUtil.cpp \
|
---|
25 | launcher.cpp \
|
---|
26 | CAddScreen.h \
|
---|
27 | CAdvancedOptions.h \
|
---|
28 | CAutoStart.h \
|
---|
29 | CGlobalOptions.h \
|
---|
30 | CHotkeyOptions.h \
|
---|
31 | CInfo.h \
|
---|
32 | CScreensLinks.h \
|
---|
33 | LaunchUtil.h \
|
---|
34 | resource.h \
|
---|
35 | launcher.rc \
|
---|
36 | $(NULL)
|
---|
37 |
|
---|
38 | EXTRA_DIST = \
|
---|
39 | launcher.dsp \
|
---|
40 | synergy.ico \
|
---|
41 | $(MSWINDOWS_SOURCE_FILES) \
|
---|
42 | $(NULL)
|
---|
43 |
|
---|
44 | MAINTAINERCLEANFILES = \
|
---|
45 | Makefile.in \
|
---|
46 | $(NULL)
|
---|
47 |
|
---|
48 | if MSWINDOWS
|
---|
49 | bin_PROGRAMS = synergy
|
---|
50 | synergy_SOURCES = \
|
---|
51 | $(MSWINDOWS_SOURCE_FILES) \
|
---|
52 | $(NULL)
|
---|
53 | endif
|
---|
54 | synergy_LDADD = \
|
---|
55 | $(top_builddir)/lib/server/libserver.a \
|
---|
56 | $(top_builddir)/lib/platform/libplatform.a \
|
---|
57 | $(top_builddir)/lib/synergy/libsynergy.a \
|
---|
58 | $(top_builddir)/lib/net/libnet.a \
|
---|
59 | $(top_builddir)/lib/io/libio.a \
|
---|
60 | $(top_builddir)/lib/mt/libmt.a \
|
---|
61 | $(top_builddir)/lib/base/libbase.a \
|
---|
62 | $(top_builddir)/lib/common/libcommon.a \
|
---|
63 | $(top_builddir)/lib/arch/libarch.a \
|
---|
64 | $(NULL)
|
---|
65 | INCLUDES = \
|
---|
66 | -I$(top_srcdir)/lib/common \
|
---|
67 | -I$(top_srcdir)/lib/arch \
|
---|
68 | -I$(top_srcdir)/lib/base \
|
---|
69 | -I$(top_srcdir)/lib/mt \
|
---|
70 | -I$(top_srcdir)/lib/io \
|
---|
71 | -I$(top_srcdir)/lib/net \
|
---|
72 | -I$(top_srcdir)/lib/synergy \
|
---|
73 | -I$(top_srcdir)/lib/platform \
|
---|
74 | -I$(top_srcdir)/lib/server \
|
---|
75 | $(NULL)
|
---|