mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-11 10:34:06 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
33 lines
732 B
Makefile
33 lines
732 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = ../..
|
|
|
|
noinst_LIBRARIES = libserver.a
|
|
libserver_a_SOURCES = \
|
|
CClientProxy.cpp \
|
|
CClientProxy1_0.cpp \
|
|
CConfig.cpp \
|
|
CHTTPServer.cpp \
|
|
CPrimaryClient.cpp \
|
|
CPrimaryScreen.cpp \
|
|
CServer.cpp \
|
|
CXWindowsPrimaryScreen.cpp \
|
|
CClientProxy.h \
|
|
CClientProxy1_0.h \
|
|
CConfig.h \
|
|
CHTTPServer.h \
|
|
CPrimaryClient.h \
|
|
CPrimaryScreen.h \
|
|
CServer.h \
|
|
CXWindowsPrimaryScreen.h \
|
|
$(NULL)
|
|
INCLUDES = \
|
|
-I$(DEPTH)/lib/base \
|
|
-I$(DEPTH)/lib/mt \
|
|
-I$(DEPTH)/lib/io \
|
|
-I$(DEPTH)/lib/http \
|
|
-I$(DEPTH)/lib/net \
|
|
-I$(DEPTH)/lib/synergy \
|
|
-I$(DEPTH)/lib/platform \
|
|
$(NULL)
|