| 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
 | 
|---|
| 14 | NULL =
 | 
|---|
| 15 | 
 | 
|---|
| 16 | EXTRA_DIST =                                            \
 | 
|---|
| 17 |         net.dsp                                                 \
 | 
|---|
| 18 |         $(NULL)
 | 
|---|
| 19 | 
 | 
|---|
| 20 | MAINTAINERCLEANFILES =                          \
 | 
|---|
| 21 |         Makefile.in                                             \
 | 
|---|
| 22 |         $(NULL)
 | 
|---|
| 23 | 
 | 
|---|
| 24 | noinst_LIBRARIES = libnet.a
 | 
|---|
| 25 | libnet_a_SOURCES =                                      \
 | 
|---|
| 26 |         CNetworkAddress.cpp                             \
 | 
|---|
| 27 |         CSocketMultiplexer.cpp                  \
 | 
|---|
| 28 |         CTCPListenSocket.cpp                    \
 | 
|---|
| 29 |         CTCPSocket.cpp                                  \
 | 
|---|
| 30 |         CTCPSocketFactory.cpp                   \
 | 
|---|
| 31 |         IDataSocket.cpp                                 \
 | 
|---|
| 32 |         IListenSocket.cpp                               \
 | 
|---|
| 33 |         ISocket.cpp                                             \
 | 
|---|
| 34 |         XSocket.cpp                                             \
 | 
|---|
| 35 |         CNetworkAddress.h                               \
 | 
|---|
| 36 |         CSocketMultiplexer.h                    \
 | 
|---|
| 37 |         CTCPListenSocket.h                              \
 | 
|---|
| 38 |         CTCPSocket.h                                    \
 | 
|---|
| 39 |         CTCPSocketFactory.h                             \
 | 
|---|
| 40 |         IDataSocket.h                                   \
 | 
|---|
| 41 |         IListenSocket.h                                 \
 | 
|---|
| 42 |         ISocket.h                                               \
 | 
|---|
| 43 |         ISocketFactory.h                                \
 | 
|---|
| 44 |         ISocketMultiplexerJob.h                 \
 | 
|---|
| 45 |         TSocketMultiplexerMethodJob.h   \
 | 
|---|
| 46 |         XSocket.h                                               \
 | 
|---|
| 47 |         $(NULL)
 | 
|---|
| 48 | INCLUDES =                                                      \
 | 
|---|
| 49 |         -I$(top_srcdir)/lib/common              \
 | 
|---|
| 50 |         -I$(top_srcdir)/lib/arch                \
 | 
|---|
| 51 |         -I$(top_srcdir)/lib/base                \
 | 
|---|
| 52 |         -I$(top_srcdir)/lib/mt                  \
 | 
|---|
| 53 |         -I$(top_srcdir)/lib/io                  \
 | 
|---|
| 54 |         $(NULL)
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.