~nobuto/ubuntu/natty/synergy/merge-from-experimental

« back to all changes in this revision

Viewing changes to cmd/synergyc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Lutz
  • Date: 2003-10-31 19:36:30 UTC
  • Revision ID: james.westby@ubuntu.com-20031031193630-knbv79x5az7qh49y
Tags: upstream-1.0.14
ImportĀ upstreamĀ versionĀ 1.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
DEPTH = ../..
 
16
VDEPTH = ./$(VPATH)/$(DEPTH)
 
17
 
 
18
EXTRA_DIST =                                                    \
 
19
        CMSWindowsClientTaskBarReceiver.cpp     \
 
20
        CMSWindowsClientTaskBarReceiver.h       \
 
21
        resource.h                                                      \
 
22
        synergyc.dsp                                            \
 
23
        synergyc.ico                                            \
 
24
        synergyc.rc                                                     \
 
25
        tb_error.ico                                            \
 
26
        tb_idle.ico                                                     \
 
27
        tb_run.ico                                                      \
 
28
        tb_wait.ico                                                     \
 
29
        $(NULL)
 
30
 
 
31
MAINTAINERCLEANFILES =                                  \
 
32
        Makefile.in                                                     \
 
33
        $(NULL)
 
34
 
 
35
bin_PROGRAMS = synergyc
 
36
synergyc_SOURCES =                                              \
 
37
        CClientTaskBarReceiver.cpp                      \
 
38
        CClientTaskBarReceiver.h                        \
 
39
        CXWindowsClientTaskBarReceiver.cpp      \
 
40
        CXWindowsClientTaskBarReceiver.h        \
 
41
        synergyc.cpp                                            \
 
42
        $(NULL)
 
43
synergyc_LDADD =                                                \
 
44
        $(DEPTH)/lib/client/libclient.a         \
 
45
        $(DEPTH)/lib/platform/libplatform.a     \
 
46
        $(DEPTH)/lib/synergy/libsynergy.a       \
 
47
        $(DEPTH)/lib/net/libnet.a                       \
 
48
        $(DEPTH)/lib/io/libio.a                         \
 
49
        $(DEPTH)/lib/mt/libmt.a                         \
 
50
        $(DEPTH)/lib/base/libbase.a                     \
 
51
        $(DEPTH)/lib/arch/libarch.a                     \
 
52
        $(X_LIBS)                                                       \
 
53
        $(X_PRE_LIBS)                                           \
 
54
        -lXtst                                                          \
 
55
        -lXext                                                          \
 
56
        -lX11                                                           \
 
57
        $(X_EXTRA_LIBS)                                         \
 
58
        $(NULL)
 
59
INCLUDES =                                                              \
 
60
        -I$(VDEPTH)/lib/common                          \
 
61
        -I$(VDEPTH)/lib/arch                            \
 
62
        -I$(VDEPTH)/lib/base                            \
 
63
        -I$(VDEPTH)/lib/mt                                      \
 
64
        -I$(VDEPTH)/lib/io                                      \
 
65
        -I$(VDEPTH)/lib/net                                     \
 
66
        -I$(VDEPTH)/lib/synergy                         \
 
67
        -I$(VDEPTH)/lib/platform                        \
 
68
        -I$(VDEPTH)/lib/client                          \
 
69
        $(NULL)