barrier/server/Makefile.am
crs f48a5fe387 checkpoint. still refactoring. merged common code from primary
screens into CPrimaryScreen and merged common code from secondary
screens into CSecondaryScreen.  changed is-a relationship to a
has-a between the primary and secondary screen classes and the
generic platform dependent screen class to avoid multiple
inheritance of implementation.  also standardized the interface
for those generic screen classes.  adding a platform now involves
implementing simpler interfaces:  IScreen for the generic screen,
IScreenEventHandler and some methods of CPrimaryScreen for the
primary screen, and IScreenEventHandler and some methods of
CSecondaryScreen for the secondary screen.  did X11 platform
but not win32 platform.
2002-07-13 22:00:38 +00:00

49 lines
1.0 KiB
Makefile

## Process this file with automake to produce Makefile.in
NULL =
DEPTH = ..
bin_PROGRAMS = synergyd
synergyd_SOURCES = \
CClientProxy.cpp \
CClientProxy1_0.cpp \
CConfig.cpp \
CHTTPServer.cpp \
CPrimaryClient.cpp \
CPrimaryScreen.cpp \
CServer.cpp \
CXWindowsPrimaryScreen.cpp \
server.cpp \
CClientProxy.h \
CClientProxy1_0.h \
CConfig.h \
CHTTPServer.h \
CPrimaryClient.h \
CPrimaryScreen.h \
CServer.h \
CXWindowsPrimaryScreen.h \
$(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 \
$(X_LIBS) \
$(X_PRE_LIBS) \
-lXtst \
-lXext \
-lX11 \
$(X_EXTRA_LIBS) \
$(NULL)
INCLUDES = \
-I$(DEPTH)/base \
-I$(DEPTH)/mt \
-I$(DEPTH)/io \
-I$(DEPTH)/http \
-I$(DEPTH)/net \
-I$(DEPTH)/synergy \
-I$(DEPTH)/platform \
$(NULL)