27 lines
695 B
Makefile
27 lines
695 B
Makefile
# This is a Makefile fragment, see ../Makefile
|
|
|
|
SRC_DIRS += $(PVACCESS_SRC)/remote
|
|
|
|
INC += remote.h
|
|
INC += security.h
|
|
INC += blockingUDP.h
|
|
INC += beaconHandler.h
|
|
INC += blockingTCP.h
|
|
INC += channelSearchManager.h
|
|
INC += simpleChannelSearchManagerImpl.h
|
|
INC += transportRegistry.h
|
|
INC += serializationHelper.h
|
|
INC += codec.h
|
|
|
|
LIBSRCS += blockingUDPTransport.cpp
|
|
LIBSRCS += blockingUDPConnector.cpp
|
|
LIBSRCS += beaconHandler.cpp
|
|
LIBSRCS += blockingTCPConnector.cpp
|
|
LIBSRCS += simpleChannelSearchManagerImpl.cpp
|
|
LIBSRCS += abstractResponseHandler.cpp
|
|
LIBSRCS += blockingTCPAcceptor.cpp
|
|
LIBSRCS += transportRegistry.cpp
|
|
LIBSRCS += serializationHelper.cpp
|
|
LIBSRCS += codec.cpp
|
|
LIBSRCS += security.cpp
|