2002-06-18 19:44:34 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
NULL =
|
|
|
|
DEPTH = ..
|
|
|
|
|
|
|
|
bin_PROGRAMS = synergyd
|
2002-06-22 17:31:24 +00:00
|
|
|
synergyd_SOURCES = \
|
2002-07-09 21:22:31 +00:00
|
|
|
CClientProxy.cpp \
|
|
|
|
CClientProxy1_0.cpp \
|
2002-06-22 17:31:24 +00:00
|
|
|
CConfig.cpp \
|
|
|
|
CHTTPServer.cpp \
|
2002-07-09 21:22:31 +00:00
|
|
|
CPrimaryClient.cpp \
|
|
|
|
CServer.cpp \
|
|
|
|
CXWindowsPrimaryScreen.cpp \
|
2002-06-22 17:31:24 +00:00
|
|
|
server.cpp \
|
2002-07-09 21:22:31 +00:00
|
|
|
CClientProxy.h \
|
|
|
|
CClientProxy1_0.h \
|
2002-06-22 17:31:24 +00:00
|
|
|
CConfig.h \
|
|
|
|
CHTTPServer.h \
|
2002-07-09 21:22:31 +00:00
|
|
|
CPrimaryClient.h \
|
2002-06-22 17:31:24 +00:00
|
|
|
CServer.h \
|
|
|
|
CXWindowsPrimaryScreen.h \
|
2002-07-09 21:22:31 +00:00
|
|
|
IPrimaryScreen.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|
|
|
|
synergyd_LDADD = \
|
|
|
|
$(DEPTH)/platform/libplatform.a \
|
|
|
|
$(DEPTH)/synergy/libsynergy.a \
|
|
|
|
$(DEPTH)/net/libnet.a \
|
|
|
|
$(DEPTH)/http/libhttp.a \
|
|
|
|
$(DEPTH)/io/libio.a \
|
|
|
|
$(DEPTH)/mt/libmt.a \
|
|
|
|
$(DEPTH)/base/libbase.a \
|
2002-06-19 14:45:22 +00:00
|
|
|
$(X_LIBS) \
|
|
|
|
$(X_PRE_LIBS) \
|
2002-06-23 15:43:40 +00:00
|
|
|
-lXtst \
|
|
|
|
-lXext \
|
2002-06-18 19:44:34 +00:00
|
|
|
-lX11 \
|
2002-06-19 14:45:22 +00:00
|
|
|
$(X_EXTRA_LIBS) \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(DEPTH)/base \
|
|
|
|
-I$(DEPTH)/mt \
|
|
|
|
-I$(DEPTH)/io \
|
|
|
|
-I$(DEPTH)/http \
|
|
|
|
-I$(DEPTH)/net \
|
|
|
|
-I$(DEPTH)/synergy \
|
|
|
|
-I$(DEPTH)/platform \
|
|
|
|
$(NULL)
|