Communication protocol handler for the taskrambler framework. This does not contain specific protocol implementations but the abstract code to handle them.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

45 lines
1.0 KiB

ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../include/ -std=c99
AM_LDFLAGS +=
TRCOMM = cep_write_buffered.c \
comm_end_point_read.c \
comm_end_point.c \
conn_entry_point.c \
connection.c \
connection_getter.c \
connector.c \
datagram_service.c \
datagram_entry_point.c \
comm_manager.c \
comm_manager_poll.c \
comm_manager_epoll.c \
comm_manager_dispatcher.c \
comm_manager_shutdown.c \
comm_manager_shutdown_read.c \
comm_manager_shutdown_write.c \
comm_worker.c \
io_handler.c \
proto_message.c \
protocol.c \
protocol_handler.c \
protocol_message_raw.c \
protocol_raw.c \
server.c \
server_bind_tcp.c \
server_bind_udp.c \
server_start.c \
simple_client.c \
simple_client_issue.c \
i_comm_end_point.c \
i_comm_manager.c \
i_protocol.c
lib_LTLIBRARIES = libtrcomm.la
libtrcomm_la_SOURCES = $(TRCOMM)
libtrcomm_la_CFLAGS = $(AM_CFLAGS)
libtrcomm_la_LIBADD = -lrt -lpthread
libtrcomm_la_LDFLAGS = -version-info 1:0:0 $(AM_LDFLAGS)