mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 09:43:24 +03:00
900b075e3a
on unix, but client screens don't simulate events other than mouse move. also not supporting clipboard at all yet and the main app is just a temporary framework to test with. must clean up protocol and communication.
39 lines
529 B
Makefile
39 lines
529 B
Makefile
DEPTH=.
|
|
include Make-linux
|
|
|
|
#
|
|
# target files
|
|
#
|
|
TARGETS = main
|
|
|
|
#
|
|
# source files
|
|
#
|
|
CXXFILES = \
|
|
XBase.cpp \
|
|
CTrace.cpp \
|
|
CEventQueue.cpp \
|
|
CSocket.cpp \
|
|
CMessageSocket.cpp \
|
|
CSocketFactory.cpp \
|
|
CServer.cpp \
|
|
CClient.cpp \
|
|
CScreenProxy.cpp \
|
|
CXScreen.cpp \
|
|
CUnixXScreen.cpp \
|
|
CUnixTCPSocket.cpp \
|
|
CUnixEventQueue.cpp \
|
|
main.cpp \
|
|
$(NULL)
|
|
|
|
#
|
|
# libraries we depend on
|
|
#
|
|
DEPLIBS = \
|
|
$(NULL)
|
|
|
|
targets: $(TARGETS)
|
|
|
|
main: $(OBJECTS) $(DEPLIBS)
|
|
$(CXX) $(CXXFLAGS) -o $@ $(OBJECTS) $(LDFLAGS)
|